24 lines
531 B
Sass
24 lines
531 B
Sass
// Place all the styles related to the Games controller here.
|
|
// They will automatically be included in application.css.
|
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
|
|
|
.games-container
|
|
flex: 1 1 auto
|
|
display: flex
|
|
flex-direction: column
|
|
//align-items: flex-start
|
|
.game
|
|
flex: 1 1 auto
|
|
font-size: 4vmin
|
|
line-height: 4vmin
|
|
margin: 0 0 2vmin 0
|
|
background: green
|
|
padding: 2vmin
|
|
|
|
.button
|
|
text-align: center
|
|
font-size: 4vmin
|
|
padding: 2vmin 4vmin
|
|
background: black
|
|
margin-bottom: 5vmin
|