hookshot/web/components/ConnectionCard.module.scss
Will Hunt aa9e066530
Add Generic Webhooks Widget interface (#140)
* Start work on improved widget interface for admin room

* Add changes needed for InviteView

* More widget bits

* Lots more work to support setup widgets

* Redesign work

* Fix build order for web

* Remove unused invite code

* Update configs

* Cleanup

* Support widget branding

* Tidy up web app

* Support generic service config lookup

* Stronger typings for configuration

* Improve error text

* fix patch

* changelog

* First pass on documentation

* Fix tests

* fixes

* Don't require room state / admin rooms for room config requests

* Fix no render when secrets isn't provided

* rework if logic

* Fixes after feedback

* more review fixes

* Cleanup unused code

* fix indent

* Update matrix-appservice-bridge to 4.0.1

* Update widget API
2022-04-08 16:16:12 +01:00

44 lines
825 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;
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;
}
}
}