mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-10 07:25:35 +00:00
* feat(wip): translation * fix: some i18n errors + use ssr translation * fix: i18next implementation * fix: tsc errors * feat: i18n middleware * feat: translate link view home page * feat: translate quick actions * feat: translate search modal * feat: translate side menu * feat: native error boundary + translation * feat: translate error pages * feat: translate category forms * feat: translate link forms * refactor: LangSelector is no longer absolute by default
29 lines
496 B
SCSS
29 lines
496 B
SCSS
@import "keyframes.scss";
|
|
|
|
.App {
|
|
margin-top: 10em;
|
|
margin-bottom: 3em;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
animation: fadein 250ms both;
|
|
|
|
& h1 {
|
|
font-size: 1.75em;
|
|
font-weight: 500;
|
|
margin: 0;
|
|
margin-right: 1em;
|
|
border-right: 1px solid rgba(0, 0, 0, 0.3);
|
|
padding: 10px 23px 10px 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
& h2 {
|
|
font-size: 1em;
|
|
font-weight: normal;
|
|
line-height: inherit;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|