File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
1
BSD 3-Clause License
2
2
3
- Copyright (c) 2025, Devfolio
3
+ Copyright 2015 The Chromium Authors
4
4
5
5
Redistribution and use in source and binary forms, with or without
6
6
modification, are permitted provided that the following conditions are met:
Original file line number Diff line number Diff line change 53
53
color : rgb (122 , 122 , 122 );
54
54
}
55
55
56
- .flex-row {
56
+ .flex-box {
57
57
display : flex;
58
- gap : 16 px ;
58
+ gap : 48 px ;
59
59
justify-content : space-between;
60
60
}
61
61
62
+ /* Mobile Screen */
63
+ @media screen and (max-width : 768px ) {
64
+ .flex-box {
65
+ flex-direction : column;
66
+ gap : 24px ;
67
+ }
68
+ }
69
+
62
70
.flex-item {
63
71
display : flex;
64
72
justify-content : center;
65
73
align-items : center;
66
74
gap : 8px ;
67
75
}
68
76
77
+ .flex-item input {
78
+ width : 180px ;
79
+ }
80
+
69
81
.onchain-cta {
70
82
background-color : transparent;
71
83
border : none;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ <h4>( SPACE to Start - Press 'F' to go fullscreen )</h4>
32
32
</ a >
33
33
34
34
< h4 > Developer Options</ h4 >
35
- < div class ="flex-row ">
35
+ < div class ="flex-box ">
36
36
< div class ="flex-item ">
37
37
< label for ="sprite-1x "> 1x Sprite:</ label >
38
38
< input type ="file " id ="sprite-1x " accept ="image/* " />
You can’t perform that action at this time.
0 commit comments