Position the logo and title components

This commit is contained in:
Gabe Kangas
2022-05-17 16:07:56 -07:00
parent 51a12dc905
commit 97b2e64f58
2 changed files with 52 additions and 14 deletions

View File

@@ -17,6 +17,11 @@
display: grid;
}
.buttonsLogoTitleSection {
margin-left: 1.5vw;
margin-right: 1.5vw;
}
.pageContentSection {
background-color: var(--theme-background-secondary);
border-radius: var(--theme-rounded-corners);
@@ -25,6 +30,29 @@
width: 100%;
}
.logoTitleSection {
display: flex;
flex-direction: row;
}
.titleSection {
display: flex;
flex-direction: column;
margin-top: 20px;
margin-left: 10px;
.title {
font-size: 2.5vw;
font-weight: bold;
color: var(--theme-text-primary);
}
.subtitle {
font-size: 1.6vw;
font-weight: bold;
}
}
@media (min-width: 768px) {
.mobileChat {
display: none;