some webv2 UI polish (#2940)

* style tweaks for Action Button, UserMenu, Modal

* a bunch of misc polish; some around chat

* Prettified Code!

* cleanup

* fix formatting

* Reduce content padding a bit

* some stylesheet cleanup

* fix action button sizing

* Remove action button height completely

---------

Co-authored-by: gingervitis <gingervitis@users.noreply.github.com>
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
This commit is contained in:
gingervitis
2023-04-24 10:58:57 -07:00
committed by GitHub
parent 39bfaf2ec5
commit 44483a45d3
33 changed files with 393 additions and 114 deletions

View File

@@ -1,14 +1,15 @@
@import '../../../styles/mixins.scss';
$vert-spacing: 0.75rem;
.root {
position: relative;
display: grid;
padding: 1.4rem;
padding-top: unset;
padding: var(--content-padding);
}
.row {
margin-bottom: 7px;
margin-bottom: $vert-spacing;
}
.logoTitleSection {
@@ -17,6 +18,7 @@
.logo {
margin: auto 0.6rem;
}
@include screen(desktop) {
flex-direction: row;
.logo {
@@ -24,8 +26,11 @@
}
}
@include screen(mobile) {
@include screen(tablet) {
align-items: center;
.logo {
margin: 1.2rem auto;
}
}
}
@@ -33,23 +38,25 @@
display: flex;
flex-direction: column;
margin-left: 0.6rem;
@include screen(tablet) {
margin-left: 0;
}
.title {
font-family: var(--theme-text-display-font-family);
color: var(--theme-color-palette-0);
font-size: 1.7rem;
font-weight: bold;
font-size: 1.8rem;
font-weight: 600;
line-height: 30px;
margin: unset;
}
.subtitle {
font-size: 1.2rem;
font-weight: 400;
line-height: 1.3;
font-size: 1.15rem;
font-weight: 300;
color: var(--theme-color-palette-0);
max-width: 900px;
margin-top: 7px;
margin: $vert-spacing 0;
}
}
@@ -59,7 +66,6 @@
span {
display: inline-block;
margin-right: 0.5rem;
font-size: 0.9rem;
font-weight: 500;
font-weight: 400;
}
}