fix(welcome-page): change font family and spacing
This commit is contained in:
parent
b8de5bbfc3
commit
6fbe78eb34
|
@ -157,5 +157,6 @@ $watermarkHeight: 74px;
|
||||||
* Welcome page variables.
|
* Welcome page variables.
|
||||||
*/
|
*/
|
||||||
$welcomePageDescriptionColor: #fff;
|
$welcomePageDescriptionColor: #fff;
|
||||||
|
$welcomePageFontFamily: inherit;
|
||||||
$welcomePageHeaderBackground: linear-gradient(#165ecc, #44A5FF);
|
$welcomePageHeaderBackground: linear-gradient(#165ecc, #44A5FF);
|
||||||
$welcomePageTitleColor: #fff;
|
$welcomePageTitleColor: #fff;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.welcome {
|
.welcome {
|
||||||
font-family: Helvetica;
|
font-family: $welcomePageFontFamily;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -16,9 +16,10 @@
|
||||||
.header-text {
|
.header-text {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 286px;
|
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
margin-top: 120px;
|
margin-top: 120px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
min-height: 286px;
|
||||||
width: 645px;
|
width: 645px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,6 +28,7 @@
|
||||||
font-size: 48px;
|
font-size: 48px;
|
||||||
letter-spacing: -1px;
|
letter-spacing: -1px;
|
||||||
line-height: 58px;
|
line-height: 58px;
|
||||||
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-text-description {
|
.header-text-description {
|
||||||
|
@ -47,7 +49,7 @@
|
||||||
#new_enter_room {
|
#new_enter_room {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-top: 25px;
|
margin-bottom: 20px;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
|
@ -66,7 +68,7 @@
|
||||||
|
|
||||||
.welcome.with-content {
|
.welcome.with-content {
|
||||||
.header {
|
.header {
|
||||||
height: 552px;
|
min-height: 552px;
|
||||||
}
|
}
|
||||||
.header-image {
|
.header-image {
|
||||||
left: -61px;
|
left: -61px;
|
||||||
|
|
Loading…
Reference in New Issue