mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-04-06 01:25:38 +00:00
37 lines
737 B
SCSS
37 lines
737 B
SCSS
@use "@@/styles/shared" as *;
|
|
@use "@@/styles/tokens/tokens" as *;
|
|
|
|
.ds-section {
|
|
@include reset;
|
|
padding: $space-large 0;
|
|
background-color: $background-color-soft;
|
|
|
|
@media #{$media-query-medium} {
|
|
padding: $space-x-large 0;
|
|
}
|
|
}
|
|
|
|
.ds-section-centered {
|
|
text-align: center;
|
|
}
|
|
|
|
.ds-section-primary {
|
|
color: $text-color-primary-inverse;
|
|
@include gradient-pattern($background-color-primary-active, $background-color-primary);
|
|
}
|
|
|
|
.ds-section-secondary {
|
|
color: $text-color-secondary-inverse;
|
|
@include gradient-pattern($background-color-secondary-active, $background-color-secondary);
|
|
}
|
|
|
|
.ds-section-fullheight {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.ds-section-content {
|
|
flex: 0 0 100%;
|
|
}
|