23 lines
344 B
SCSS
23 lines
344 B
SCSS
@use "../base/variables";
|
|
|
|
#awesome-page {
|
|
.content {
|
|
p {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
h2 {
|
|
border-bottom: 1px solid variables.$gray-border;
|
|
padding-bottom: 0.3em;
|
|
margin-bottom: 16px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
ul {
|
|
margin-bottom: 16px;
|
|
li {
|
|
margin-top: 0.25em;
|
|
}
|
|
}
|
|
}
|
|
}
|