mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* Refactors to support multiple services in the widget UI * Add GitLabRepo web component view * Support searching and adding a GitLab repository on the frontend * Add final bits to supporting adding and removing connections from rooms * lint * changelog * Lots of changes based upon review feedback * linting * Add warnings * Withdraw openid overrides change for this PR * Drop unused * Remove async function syntax * Tiny bug fixes
45 lines
847 B
SCSS
45 lines
847 B
SCSS
.card {
|
|
/* Compound/Light/Background */
|
|
background: #FFFFFF;
|
|
|
|
/* Compound/Light/Quinary Content */
|
|
border: 1px solid #E3E8F0;
|
|
box-sizing: border-box;
|
|
border-radius: 8px;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
padding: 12px;
|
|
margin-top: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
img {
|
|
width: 52px;
|
|
height: 52px;
|
|
}
|
|
|
|
div {
|
|
|
|
margin-left: 12px;
|
|
|
|
p {
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
color: #737D8C;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
span {
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
} |