mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
49 lines
777 B
SCSS
49 lines
777 B
SCSS
$install-icon-size: 200px;
|
|
|
|
#content {
|
|
display: flex;
|
|
height: 100%;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
|
|
.select {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
|
|
div {
|
|
display: flex;
|
|
border: solid 1px red;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
img {
|
|
width: $install-icon-size;
|
|
height: $install-icon-size;
|
|
}
|
|
}
|
|
}
|
|
|
|
.recent {
|
|
.title {
|
|
font-size: 1.5rem;
|
|
font-weight: 100;
|
|
}
|
|
|
|
.modlist {
|
|
img {
|
|
height: 75px;
|
|
width: 125px;
|
|
border: solid 1px red;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
}
|
|
} |