@rolster/styles-foundations 2.5.31 → 2.5.33

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.
@@ -1,5 +1,5 @@
1
1
  // Rolster Technology App Component
2
- // v2.3.2
2
+ // v2.3.3
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
@@ -19,7 +19,7 @@
19
19
  overflow: hidden;
20
20
  z-index: var(--rls-z-index-8);
21
21
 
22
- &--snackbar {
22
+ &--navbar-snackbar {
23
23
  --rlc-snackbar-left: calc(50% + calc(var(--pvt-navbar-width) / 2));
24
24
  }
25
25
 
@@ -79,6 +79,17 @@
79
79
 
80
80
  width: calc(100% - var(--pvt-navbar-width));
81
81
  }
82
+
83
+ &__content {
84
+ position: relative;
85
+ width: 100%;
86
+ height: 100%;
87
+ background: var(--rlc-app-navbar-background, var(--rls-app-color-100));
88
+ border-radius: 0rem 0rem var(--rls-sizing-x16) 0rem;
89
+ overflow-x: hidden;
90
+ overflow-y: auto;
91
+ box-sizing: border-box;
92
+ }
82
93
  }
83
94
 
84
95
  &__content {
@@ -95,15 +106,15 @@
95
106
  }
96
107
  }
97
108
 
98
- @media screen and (max-width: 640px) {
109
+ @media screen and (max-width: 320px) {
99
110
  .rls-app {
100
111
  &__body {
101
- --pvt-navbar-width: 140rem;
102
- --pvt-navbar-width-condense: 140rem;
112
+ --pvt-navbar-width: 120rem;
113
+ --pvt-navbar-width-condense: 120rem;
103
114
  --pvt-section-navbar: 0rem;
104
115
 
105
116
  &--navbar-condense {
106
- --pvt-section-navbar: 140rem;
117
+ --pvt-section-navbar: 120rem;
107
118
  }
108
119
  }
109
120
 
@@ -114,3 +125,16 @@
114
125
  }
115
126
  }
116
127
  }
128
+
129
+ @media screen and (max-width: 640px) {
130
+ .rls-app {
131
+ &__body {
132
+ --pvt-navbar-width: 140rem;
133
+ --pvt-navbar-width-condense: 140rem;
134
+
135
+ &--navbar-condense {
136
+ --pvt-section-navbar: 140rem;
137
+ }
138
+ }
139
+ }
140
+ }