beteran-backend-app-browser/src/app/layout/layout.component.scss
2022-06-28 16:40:33 +09:00

27 lines
486 B
SCSS

layout {
display: flex;
flex: 1 1 auto;
width: 100%;
max-width: 100%;
min-width: 0;
/* Base styles for individual layouts */
> * {
position: relative;
display: flex;
flex: 1 1 auto;
width: 100%;
}
/* Base styles for components that load as a route */
router-outlet {
+ * {
position: relative;
display: flex;
flex: 1 1 auto;
width: 100%;
}
}
}