File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
frontend/src/components/goals-screen Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 16
16
17
17
.goals-container {
18
18
display : flex ;
19
+ max-height : calc (100vh - 216px );
20
+ overflow : auto ;
19
21
20
22
.goals-display-area {
21
23
margin : 30px 30px 0px 30px ;
145
147
}
146
148
}
147
149
}
150
+
151
+ .goals-container {
152
+ scrollbar-width : thin ; /* For Firefox */
153
+ scrollbar-color : #888888 #f0f0f0 ; /* For Firefox */
154
+ }
155
+
156
+ /* Webkit (Chrome, Safari) */
157
+ .goals-container ::-webkit-scrollbar {
158
+ width : 8px ;
159
+ }
160
+
161
+ .goals-container ::-webkit-scrollbar-thumb {
162
+ background-color : #555555 ;
163
+ border-radius : 4px ;
164
+ }
165
+
166
+ .goals-container ::-webkit-scrollbar-thumb :hover {
167
+ background-color : #777777 ;
168
+ }
169
+
170
+ .goals-container ::-webkit-scrollbar-track {
171
+ background-color : #001f3f ;
172
+ border-radius : 4px ;
173
+ }
You can’t perform that action at this time.
0 commit comments