Client - fix background color

This commit is contained in:
Sam 2022-11-09 13:13:20 +01:00
parent 4b8573b179
commit 670b1ff1af
4 changed files with 3 additions and 4 deletions

View File

@ -162,6 +162,7 @@ button {
.view { .view {
padding-bottom: 35px; padding-bottom: 35px;
background-color: var(--app-background-color);
} }
.fa-trophy { .fa-trophy {

View File

@ -30,7 +30,6 @@
#loginOrRegister { #loginOrRegister {
display: flex; display: flex;
height: 100%;
.container { .container {
display: flex; display: flex;

View File

@ -1,5 +1,5 @@
<template> <template>
<div id="profile" class="container view" v-if="authUser.username"> <div id="profile" class="view" v-if="authUser.username">
<router-view :user="authUser"></router-view> <router-view :user="authUser"></router-view>
<div id="bottom" /> <div id="bottom" />
</div> </div>
@ -24,6 +24,7 @@
#profile { #profile {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding: 0 $default-padding;
::v-deep(.profile-form) { ::v-deep(.profile-form) {
display: flex; display: flex;

View File

@ -60,8 +60,6 @@
<style lang="scss" scoped> <style lang="scss" scoped>
@import '~@/scss/vars.scss'; @import '~@/scss/vars.scss';
#workouts { #workouts {
height: 100%;
.workouts-container { .workouts-container {
display: flex; display: flex;
flex-direction: row; flex-direction: row;