mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
58feb07119
This has a side effect of adding #23 as well. A more performant caching method is probably needed (as this doesn't cache at all).
32 lines
460 B
SCSS
32 lines
460 B
SCSS
// shared styling for all config screens
|
|
.config-wrapper {
|
|
padding: 25px;
|
|
}
|
|
|
|
.config-header {
|
|
padding-bottom: 8px;
|
|
margin-bottom: 14px;
|
|
border-bottom: 1px solid #dadada;
|
|
}
|
|
|
|
.config-header h4 {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.config-header img {
|
|
margin-right: 7px;
|
|
width: 35px;
|
|
height: 35px;
|
|
border-radius: 35px;
|
|
}
|
|
|
|
.close-icon {
|
|
float: right;
|
|
margin: -17px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.config-content {
|
|
display: block;
|
|
} |