Fixed some styling

This commit is contained in:
Alexis
2021-03-05 14:58:50 +01:00
parent 41530e9af8
commit 5a62b9568a
3 changed files with 44 additions and 0 deletions

View File

@@ -24,6 +24,11 @@ export default defineComponent({
.fs-content {
margin-top: 70px;
min-height: calc(100vh - 70px);
display: flex;
align-items: stretch;
> * {
width: 100%;
}
}
}
</style>

View File

@@ -4,7 +4,12 @@
@import 'variables';
@import 'animations';
* {
box-sizing: border-box;
}
body {
height: 100%;
font-family: $body-font-family;
font-size: $font-size-base;
line-height: 1.2;
@@ -31,6 +36,18 @@ h4 { font-size: 18px; }
&-2 {
margin-bottom: 20px;
font-size: 25px;
font-weight: $fw-semibold;
}
&-3 {
margin-bottom: 0;
font-size: 20px;
font-weight: $fw-semibold;
}
}
.txt {
&-capitalize {
text-transform: capitalize;
}
}
@@ -51,4 +68,22 @@ a {
hr {
border-color: rgba($white, .2);
}
.btn {
display: inline-block;
padding: 13px 33px;
vertical-align: middle;
line-height: 1;
white-space: nowrap;
text-decoration: none;
border-radius: 30px;
&-primary {
color: $white;
background: $primary;
&:hover {
}
}
}

View File

@@ -3,6 +3,10 @@ $white: #fff;
$black: #000;
$fs-black: #070712;
$starry-purple: #0e103d;
$primary: $starry-purple;
$heading-font-family: 'Poppins', serif;
$body-font-family: 'Open Sans', sans-serif;