Generate grid with bombs & numbers, user interactions like, click on a cell, pin a flag
17 lines
299 B
SCSS
17 lines
299 B
SCSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
user-select: none;
|
|
}
|
|
|
|
#root {
|
|
width: 100svw;
|
|
height: 100svh;
|
|
background: #598b8e;
|
|
overflow: hidden;
|
|
}
|