Skip to content

Commit

Permalink
[SXA] Bugfix/539379 fix sxa initializer styles (#1075)
Browse files Browse the repository at this point in the history
* #539379: fixed style for new structure of basic site

* #539379 changed styles and rebase

* #539379 fixed loading fonts for production version

* #539379 [SXA] fixed mobile menu

* #539379 fixed comments
  • Loading branch information
sc-ruslanmatkovskyi authored Jun 24, 2022
1 parent 7f1b970 commit 57e200e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
@import "variables";

footer {
position: absolute;
width: 100%;
height: 231px;

.rich-text {
font-size: $text-size-14;
color: $text-white;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ $hamburger-margin: 18px;
}

.component-content {
position: fixed;
display: inline-block;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
padding-right: 0;

>.component-content {
@include border-basic(all, 'none', 0);
border: 0;

.promo-text {
.field-promotext {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@import "bootstrap/dist/css/bootstrap.css";
@import "sass/main.scss";
@import "basic/main.scss";
@import "assets/app.css";
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import type { AppProps } from 'next/app';
import { I18nProvider } from 'next-localization';

import 'bootstrap/dist/css/bootstrap.css';
import 'assets/sass/main.scss';
import 'assets/basic/main.scss';
import 'assets/main.scss';

function App({ Component, pageProps }: AppProps): JSX.Element {
const { dictionary, ...rest } = pageProps;
Expand Down

0 comments on commit 57e200e

Please sign in to comment.