Skip to content

Commit

Permalink
Fix styling details
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeG committed Nov 25, 2019
1 parent af949b8 commit eeb9af5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
13 changes: 12 additions & 1 deletion eventol/front/src/libs/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ html {
}

body {
color: $event-home-body-color;
/* Margin bottom by footer height */
font-family: Roboto;
font-family: Roboto !important;
margin-bottom: 30px;
}

Expand Down Expand Up @@ -343,6 +344,12 @@ a {
}
}

.dropdown-menu {
.dropdown-item {
color: $dropdown-item-color !important;
}
}

.navbar .dropdown-menu div > a,
.navbar.navbar-light .dropdown-menu div > a,
.navbar .dropdown-menu li > a,
Expand Down Expand Up @@ -474,3 +481,7 @@ a:hover span.vote-cancel {
z-index: 5;
}
}

.table {
color: $event-home-body-color;
}
5 changes: 5 additions & 0 deletions eventol/front/src/styles/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ $user-profile: $gray;
$body-background: $light-gray;
$body-color: $white;

$event-home-body-color: #212529;

// Bootstrap colors
$bootstrap-blue: #337ab7;
$bootstrap-primary: #214760;
Expand Down Expand Up @@ -60,3 +62,6 @@ $navbar-background-color: #214760;
// Alert
$alert-info-color: #31708f;
$alert-info-background-color: #d9edf7;

// Dropdown
$dropdown-item-color: rgba(0, 0, 0, .87);

0 comments on commit eeb9af5

Please sign in to comment.