Files
Tic-Tac-Toe-Game/styles/styles.scss
2021-12-27 22:54:54 -03:00

33 lines
550 B
SCSS

@import './playerSelection.scss';
@import './game.scss';
@import './footer.scss';
html, body {
height: 100%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
overflow-y: hidden;
}
body {
margin: 0;
padding: 0;
background-color: rgb(221, 121, 121);
display: flex;
justify-content: center;
align-items: center;
}
button {
cursor: pointer;
}
.animate__animated.animate__fadeOutDown {
--animate-duration: 1s;
}