mirror of
https://github.com/ipdb/website.git
synced 2024-11-13 16:54:50 +01:00
29 lines
490 B
SCSS
29 lines
490 B
SCSS
.section {
|
|
padding-top: $spacer * 2;
|
|
padding-bottom: $spacer * 2;
|
|
|
|
// handling long text, like URLs
|
|
overflow-wrap: break-word;
|
|
word-wrap: break-word;
|
|
word-break: break-word;
|
|
text-rendering: optimizeLegibility;
|
|
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.section__header {
|
|
margin-bottom: $spacer;
|
|
}
|
|
|
|
.section__title {
|
|
font-size: $font-size-h2;
|
|
margin: 0;
|
|
}
|
|
|
|
.section__description {
|
|
font-size: $font-size-large;
|
|
margin-bottom: 0;
|
|
}
|