@jrgermain/stylesheet 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +6 -6
- package/dist/index.css.map +1 -1
- package/dist/index.min.css +1 -1
- package/dist/index.min.css.map +1 -1
- package/package.json +1 -1
- package/src/styles/components/_app.scss +5 -4
package/dist/index.css
CHANGED
|
@@ -723,8 +723,10 @@
|
|
|
723
723
|
display:flex;
|
|
724
724
|
flex-direction:column;
|
|
725
725
|
min-height:100svh;
|
|
726
|
+
min-width:100%;
|
|
726
727
|
position:relative;
|
|
727
|
-
width
|
|
728
|
+
width:-moz-min-content;
|
|
729
|
+
width:min-content;
|
|
728
730
|
}
|
|
729
731
|
|
|
730
732
|
.app-header{
|
|
@@ -734,11 +736,9 @@
|
|
|
734
736
|
color:var(--color-brand-3);
|
|
735
737
|
flex:none;
|
|
736
738
|
height:max(50px, min(3.5rem, 70px));
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
scrollbar-width:thin;
|
|
741
|
-
width:100%;
|
|
739
|
+
left:0;
|
|
740
|
+
position:sticky;
|
|
741
|
+
width:100dvw;
|
|
742
742
|
}
|
|
743
743
|
@media (prefers-color-scheme:dark){
|
|
744
744
|
.app-header{
|