28 lines
524 B
SCSS
28 lines
524 B
SCSS
.dice-set-actions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 50px 50px 0;
|
|
width: max-content;
|
|
margin: auto;
|
|
|
|
img {
|
|
border: 3px solid green;
|
|
box-shadow: 0 0 10px green;
|
|
border-radius: 20%;
|
|
padding: 5px;
|
|
width: 80px;
|
|
height: 80px;
|
|
margin-right: 10px;
|
|
|
|
&.icon-inverted {
|
|
transform: scaleX(-1);
|
|
}
|
|
}
|
|
}
|
|
|
|
.dice-set {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, auto);
|
|
gap: 20px;
|
|
padding: 50px;
|
|
} |