File tree 4 files changed +22
-4
lines changed
4 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,6 @@ const onClick = () => {
211
211
align-items : center ;
212
212
justify-content : space-between ;
213
213
height : 0 ;
214
- padding-bottom : layout .$safe-area-inset-bottom ;
215
214
overflow : hidden ;
216
215
color : var (--white-70 );
217
216
text-wrap : balance ;
@@ -303,12 +302,12 @@ const onClick = () => {
303
302
}
304
303
305
304
& .watching {
306
- height : 1.75rem ;
305
+ height : calc ( 1.75rem + #{ layout . $safe-area-inset-bottom } ) ;
307
306
308
307
& :active ,
309
308
& :focus-within ,
310
309
& :hover {
311
- height : 3rem ;
310
+ height : calc ( 3rem + #{ layout . $safe-area-inset-bottom } ) ;
312
311
color : var (--white );
313
312
314
313
.icon {
Original file line number Diff line number Diff line change 91
91
"message" : " Check-in" ,
92
92
"description" : " Button to check-in."
93
93
},
94
- "common__button__Watched " : {
94
+ "common__button__watched " : {
95
95
"message" : " Watched" ,
96
96
"description" : " Button to mark as watched."
97
97
}
Original file line number Diff line number Diff line change
1
+ @use ' ~/styles/reset' ;
2
+
1
3
/* color palette from <https://github.com/vuejs/theme> */
2
4
:host {
3
5
/* height */
Original file line number Diff line number Diff line change
1
+ /* Avoid ugly unbalanced word wrap */
2
+ h1 ,
3
+ h2 ,
4
+ h3 ,
5
+ h4 ,
6
+ h5 ,
7
+ h6 {
8
+ text-wrap : balance ;
9
+ }
10
+
11
+ /* Avoid ugly orphan word wrap */
12
+ p ,
13
+ li ,
14
+ figcaption {
15
+ max-width : 80ch ;
16
+ text-wrap : pretty;
17
+ }
You can’t perform that action at this time.
0 commit comments