* Remove `list-style-type: none` rules (this is the default). * Add `list-bulleted` and `list-inline` utility classes. * Wrap terms of service and user deletion pages in dtext `.prose` class so we don't have to redefine basic list styles on these pages.
24 lines
348 B
SCSS
24 lines
348 B
SCSS
div#news-updates {
|
|
padding: 5px;
|
|
background: var(--news-updates-background);
|
|
border-bottom: var(--news-updates-border);
|
|
overflow: hidden;
|
|
font-size: 0.8em;
|
|
|
|
ul {
|
|
float: left;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
float: left;
|
|
margin: 0 2em 0 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a#close-news-ticker-link {
|
|
float: right;
|
|
}
|
|
}
|