Migrate to modernize template

This commit is contained in:
Marek Lesko
2025-10-19 16:34:01 +00:00
parent 9deee01ba3
commit aba8943d17
666 changed files with 25377 additions and 45152 deletions

View File

@@ -0,0 +1,59 @@
@media (min-width: 1200px) {
body {
.d-lg-flex {
display: flex !important;
}
.d-lg-none {
display: none !important;
}
.d-lg-block {
display: block !important;
}
.align-items-lg-center {
align-items: center !important;
}
}
}
@media (min-width: 960px) {
.d-md-none {
display: none !important;
}
}
@media (min-width: 768px) {
body {
.d-sm-flex {
display: flex !important;
}
}
}
@media (max-width: 767px) {
.p-xs-6 {
padding: 0 6px !important;
}
}
.flex-shrink-0 {
flex-shrink: 0;
}
.flex-1-auto {
flex: 1 1 0%;
}
.hstack {
display: flex;
flex-direction: row;
gap: 20px;
}
@media (max-width: 767px) {
.hstack {
flex-direction: column;
}
}