27 lines
486 B
SCSS
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%;
|
|
}
|
|
}
|
|
}
|