Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -95,13 +95,14 @@ button:hover {
|
|
95 |
border-radius: 8px;
|
96 |
}
|
97 |
|
|
|
98 |
.cell {
|
99 |
width: 100%;
|
100 |
-
height: 100%;
|
101 |
aspect-ratio: 1 / 1;
|
102 |
background-color: #fff;
|
103 |
cursor: pointer;
|
104 |
transition: background-color 0.2s ease;
|
|
|
105 |
}
|
106 |
|
107 |
.cell:hover {
|
@@ -111,6 +112,7 @@ button:hover {
|
|
111 |
.cell.filled {
|
112 |
background-color: #007aff;
|
113 |
border: 1px solid #005bb5;
|
|
|
114 |
}
|
115 |
|
116 |
/* Stats */
|
|
|
95 |
border-radius: 8px;
|
96 |
}
|
97 |
|
98 |
+
/* Cells */
|
99 |
.cell {
|
100 |
width: 100%;
|
|
|
101 |
aspect-ratio: 1 / 1;
|
102 |
background-color: #fff;
|
103 |
cursor: pointer;
|
104 |
transition: background-color 0.2s ease;
|
105 |
+
box-sizing: border-box;
|
106 |
}
|
107 |
|
108 |
.cell:hover {
|
|
|
112 |
.cell.filled {
|
113 |
background-color: #007aff;
|
114 |
border: 1px solid #005bb5;
|
115 |
+
box-sizing: border-box;
|
116 |
}
|
117 |
|
118 |
/* Stats */
|