File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ const Builder = () => {
96
96
var h_div = document.getElementById('monaco');
97
97
const defwidth = window.innerWidth;
98
98
window.addEventListener('resize', () => {
99
- if (defwidth < window.innerWidth) {
99
+ if (defwidth > window.innerWidth) {
100
100
window.location.reload();
101
101
}
102
102
});
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const Select = ({
35
35
36
36
return (
37
37
< >
38
- < button title = { placeholder } type = 'button' > < img src = { items [ id ] [ 1 ] } title = { items [ id ] [ 0 ] } alt = "" color = 'white ' /> { items [ id ] [ 0 ] } </ button >
38
+ < button title = { placeholder } type = 'button' className = 'bb cw sb scp' > < img src = { items [ id ] [ 1 ] } title = { items [ id ] [ 0 ] } alt = "" className = 'fi ' /> { items [ id ] [ 0 ] } </ button >
39
39
</ >
40
40
)
41
41
}
Original file line number Diff line number Diff line change 59
59
border : 2px solid rgba (0 , 0 , 0 , 0.2 );
60
60
border-radius : 20px ;
61
61
}
62
- .builder div : not (# monaco ) {
62
+ .builder div : not (# monaco ): not ( # monaco * ) {
63
63
display : flex;
64
64
flex-direction : row;
65
65
gap : 10px ;
85
85
-webkit-animation-delay : 0.2s ;
86
86
}
87
87
88
- .cw { /* Color White */
88
+ .cw { /* Color: White */
89
89
color : white;
90
90
}
91
+ .bb { /* Background: Black */
92
+ background-color : black;
93
+ }
94
+ .fi { /* Filter: Invert */
95
+ filter : invert (1 );
96
+ -webkit-filter : invert (1 );
97
+ }
91
98
92
99
.ag { /* Animation Glow (Text) */
93
100
animation : g var (--a );
@@ -138,3 +145,10 @@ h1 {
138
145
# monaco {
139
146
height : 420px ;
140
147
}
148
+
149
+ .sb { /* Select Button */
150
+ display : flex;
151
+ flex-direction : row;
152
+ align-items : center;
153
+ gap : 10px ;
154
+ }
You can’t perform that action at this time.
0 commit comments