hookshot/web/components/ConnectionCard.module.scss
Will Hunt 8808385b6d
Add support for GitLab connection configuration via widgets (#320)
* 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
2022-04-30 06:08:13 +01:00

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;
}
}
}