mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
37 lines
679 B
SCSS
37 lines
679 B
SCSS
// component styles are encapsulated and only applied to their components
|
|
.integration-bag {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: stretch;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.integration {
|
|
border: 1px solid #eee;
|
|
border-radius: 5px;
|
|
margin: 7px;
|
|
padding: 5px;
|
|
width: calc(325px - 14px);
|
|
position: relative;
|
|
}
|
|
|
|
.integration .integration-avatar {
|
|
width: 50px;
|
|
height: 50px;
|
|
float: left;
|
|
}
|
|
|
|
.integration .integration-name {
|
|
display: inline-block;
|
|
font-size: 1.1em;
|
|
font-weight: 100;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.integration .integration-description {
|
|
display: block;
|
|
font-size: 0.8em;
|
|
margin-left: 55px;
|
|
color: #999;
|
|
} |