Fixed some styling
This commit is contained in:
@@ -24,6 +24,11 @@ export default defineComponent({
|
|||||||
.fs-content {
|
.fs-content {
|
||||||
margin-top: 70px;
|
margin-top: 70px;
|
||||||
min-height: calc(100vh - 70px);
|
min-height: calc(100vh - 70px);
|
||||||
|
display: flex;
|
||||||
|
align-items: stretch;
|
||||||
|
> * {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -4,7 +4,12 @@
|
|||||||
@import 'variables';
|
@import 'variables';
|
||||||
@import 'animations';
|
@import 'animations';
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
height: 100%;
|
||||||
font-family: $body-font-family;
|
font-family: $body-font-family;
|
||||||
font-size: $font-size-base;
|
font-size: $font-size-base;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
@@ -31,6 +36,18 @@ h4 { font-size: 18px; }
|
|||||||
&-2 {
|
&-2 {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
font-size: 25px;
|
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 {
|
hr {
|
||||||
border-color: rgba($white, .2);
|
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 {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -3,6 +3,10 @@ $white: #fff;
|
|||||||
$black: #000;
|
$black: #000;
|
||||||
$fs-black: #070712;
|
$fs-black: #070712;
|
||||||
|
|
||||||
|
$starry-purple: #0e103d;
|
||||||
|
|
||||||
|
$primary: $starry-purple;
|
||||||
|
|
||||||
$heading-font-family: 'Poppins', serif;
|
$heading-font-family: 'Poppins', serif;
|
||||||
$body-font-family: 'Open Sans', sans-serif;
|
$body-font-family: 'Open Sans', sans-serif;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user