Poprawiono responsywność stylów w pliku SCSS, dodano centrowanie nagłówków oraz dostosowano szerokości kolumn dla mniejszych ekranów

This commit is contained in:
2025-01-14 23:14:09 +01:00
parent b974845239
commit 5ea5688e0d
3 changed files with 20 additions and 11 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -4996,17 +4996,26 @@ p {
@extend .top-bottom-margin;
div[class^='col-']:first-child {
display: flex;
align-items: flex-start;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
h2 {
@extend .title2;
h4 {
@include respond-below(sm) {
text-align: center;
}
}
.col-xs-6 {
@include respond-below(sm) {
width: 33%;
max-width: 33%;
}
@include respond-below(xs) {
width: 50%
}
}
h2 {
@extend .title2;
}
}
.box17 {