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

* 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
58 lines
815 B
SCSS
58 lines
815 B
SCSS
|
|
.root {
|
|
margin-left: 30px;
|
|
margin-right: 30px;
|
|
padding-left: 10vw;
|
|
padding-right: 10vw;
|
|
padding-top: 10vh;
|
|
}
|
|
|
|
.root > .card {
|
|
max-width: 95%;
|
|
}
|
|
|
|
.header {
|
|
text-align: left;
|
|
font-size: 24pt;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.sidebar {
|
|
min-height: 60vh;
|
|
max-width: 10vw;
|
|
flex: 200px;
|
|
}
|
|
|
|
.content {
|
|
padding-left: 20px;
|
|
h2 {
|
|
font-size: 16pt;
|
|
}
|
|
}
|
|
|
|
.contents {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.sidebar > ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.sidebar > ul > a > li {
|
|
border-radius: 5px;
|
|
margin-bottom: 5px;
|
|
padding: 0.3em;
|
|
|
|
}
|
|
|
|
.sidebar > ul > a:hover {
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sidebar > ul > a > li.active {
|
|
background-color: var(--foreground-color);
|
|
color: var(--background-color);
|
|
} |