Arno Kaimbacher
cefd9081ae
Some checks failed
CI Pipeline / japa-tests (push) Failing after 52s
- adapted menu.ts, NavBar.vue, NavBarItem.vue for highlighting active nav item - NavBarItemLabel.vue for app menu highlighting - adapted routes.ts - adapted app.edge for new favicon - adapted LayoutAuthenticated.vue (:showAsideMenu="false") for showing AsideMenu optional - new material icons: BriefcaseCheck.vue, SwapHorizontal.vue, AccountGroup.vue, Lock.vue - started with FirstRunWizard
32 lines
649 B
CSS
32 lines
649 B
CSS
.page {
|
|
&__wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
min-height: min(520px, 50vh);
|
|
}
|
|
|
|
&__scroller {
|
|
overflow-y: scroll;
|
|
margin-top: calc(var(--default-grid-baseline) * 8);
|
|
}
|
|
|
|
&__heading {
|
|
text-align: center;
|
|
}
|
|
|
|
&__subtitle {
|
|
max-width: 450px;
|
|
margin: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
&__content {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: calc(var(--default-grid-baseline) * 6);
|
|
justify-content: center;
|
|
margin: calc(var(--default-grid-baseline) * 10) 0;
|
|
}
|
|
}
|