mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
7a0af05ac4
This is the UI where the user can pick which stickers they want. This does not add the widget yet though. Helps towards #156
38 lines
542 B
SCSS
38 lines
542 B
SCSS
.pack {
|
|
display: flex;
|
|
margin: 20px;
|
|
padding: 5px;
|
|
background-color: #f6fbff;
|
|
|
|
.caption {
|
|
flex: 1;
|
|
margin-left: 20px;
|
|
padding-top: 20px;
|
|
|
|
.name {
|
|
font-size: 1.1em;
|
|
font-weight: bold;
|
|
display: block;
|
|
}
|
|
|
|
.description {
|
|
color: #7d7d7d;
|
|
display: block;
|
|
}
|
|
|
|
.toggle-switch {
|
|
margin-top: 20px;
|
|
margin-right: 10px;
|
|
float: right;
|
|
}
|
|
|
|
.author, .license {
|
|
font-size: 0.8em;
|
|
color: #7d7d7d;
|
|
|
|
a {
|
|
color: #7d7d7d;
|
|
}
|
|
}
|
|
}
|
|
} |