Louis Hollingworth
ca2f305a0a
Utilities has been added since it is my aim to have all of the staff forms and timezones added to the site
22 lines
402 B
SCSS
22 lines
402 B
SCSS
@use 'colours';
|
|
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Ubuntu', sans-serif !important;
|
|
background-color: colours.$bg-colour-light;
|
|
}
|
|
|
|
.container {
|
|
min-height: 100vh;
|
|
padding: 0 0.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.title {
|
|
font-size: 3rem;
|
|
}
|