- Static HTML hotel website with Bootstrap 5 - i18next-based client-side internationalization - Language switcher (DE/EN) in navbar - German and English translation JSON files - Translated: navigation, content, forms, FAQ, legal pages (AGB) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
265 B
SCSS
9 lines
265 B
SCSS
// Container mixins
|
|
|
|
@mixin make-container($gutter: $container-padding-x) {
|
|
width: 100%;
|
|
padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter});
|
|
padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter});
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|