Files
Minesweeper/src/index.scss
T
alexis 28f48bacdd (game): Generate grid & User Interactions
Generate grid with bombs & numbers, user interactions like, click on a cell, pin a flag
2024-02-12 11:18:14 +01:00

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;
}