23 lines
281 B
SCSS

ul {
&.unstyled {
list-style: none;
padding-left: 0em;
ul {
list-style:disc outside;
}
}
}
a {
color: $base-link-color;
text-decoration: none;
&:hover {
color: $hover-link-color;
}
}
.text-right {
text-align: right;
}