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).
38 lines
567 B
SCSS
38 lines
567 B
SCSS
// component styles are encapsulated and only applied to their components
|
|
.integration {
|
|
flex: auto;
|
|
margin: 5px;
|
|
padding: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
min-width: 150px;
|
|
background-color: white;
|
|
}
|
|
|
|
.avatar {
|
|
float: left;
|
|
margin-right: 7px;
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.title {
|
|
float: right;
|
|
width: calc(100% - 57px);
|
|
}
|
|
|
|
.switch {
|
|
display: inline-block;
|
|
text-align: left;
|
|
}
|
|
|
|
.toolbar {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.config-icon {
|
|
cursor: pointer;
|
|
} |