Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

Commit

Permalink
Fix some font stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Allypost committed Apr 25, 2021
1 parent fbecf03 commit c9116b0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/styles/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ body {
.theme--light {

&.v-application {
font-family: Raleway, Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: $font-stack;
// line-height: 1.3;
color: $fer-black;
background: $fer-white;
Expand Down
2 changes: 2 additions & 0 deletions assets/styles/include/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
$font-stack: "Raleway", "Frutiger", "Frutiger Linotype", "Univers", "Calibri", "Gill Sans", "Gill Sans MT", "Myriad Pro", "Myriad", "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", "Tahoma", "Geneva", "Helvetica Neue", "Helvetica", "Arial", sans-serif;

$fer-yellow: #ecb000;
$fer-dark-blue: #00003f;
$fer-white: #ffffff;
Expand Down
10 changes: 9 additions & 1 deletion components/CookieConsent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,11 @@

<v-dialog
v-model="dialog"
:class="$style.noticeDialog"
max-width="700"
>
<v-card>
<v-card-title class="headline">
<v-card-title class="headline" :class="$style.headline">
Pravila o kolačićima za Job Fair Meetup
</v-card-title>

Expand Down Expand Up @@ -261,6 +262,13 @@
$breakpoint: sm;
:global(.v-application) {
.headline {
font-family: $font-stack !important;
}
}
.container {
position: fixed;
z-index: 99;
Expand Down

0 comments on commit c9116b0

Please sign in to comment.