Skip to content

Commit edfc8d4

Browse files
committed
fix footer link Refs: #318
1 parent 0d4bed7 commit edfc8d4

2 files changed

Lines changed: 35 additions & 26 deletions

File tree

src/components/Footer.vue

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<template>
2-
<a
3-
href="https://esciencecenter.nl"
4-
target="_blank"
5-
>
6-
<img src="~assets/nlesc-logo.svg">
7-
</a>
2+
<div id="logo">
3+
<a
4+
href="https://esciencecenter.nl"
5+
target="_blank"
6+
>
7+
<img src="~assets/nlesc-logo.svg">
8+
</a>
9+
</div>
810
</template>
911

1012
<script lang="ts">

src/css/app.css

Lines changed: 27 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ body {
9191
min-height: 80px;
9292
}
9393
#preview {
94-
background-color: var(--fgcolor,limegreen);
94+
background-color: var(--fgcolor, limegreen);
9595
display: flex;
9696
flex-direction: column;
9797
flex-grow: 0.5;
@@ -108,7 +108,7 @@ body {
108108
display: flex;
109109
flex-direction: column;
110110
flex-grow: 1;
111-
max-height:720px;
111+
max-height: 720px;
112112
min-height: 300px;
113113
}
114114
#preview-button-bar {
@@ -137,59 +137,66 @@ body {
137137
padding-right: 10px;
138138
width: 1900px;
139139
}
140-
140+
#logo {
141+
display: flex;
142+
flex-direction: column;
143+
justify-content: center;
144+
padding-left: 16px;
145+
width: 245px;
146+
}
141147

142148
@font-face {
143-
font-family: 'Roboto';
144-
src: url('./fonts/Roboto/Roboto-Regular.ttf');
149+
font-family: "Roboto";
150+
src: url("./fonts/Roboto/Roboto-Regular.ttf");
145151
}
146152

147153
@font-face {
148-
font-family: 'Roboto Condensed';
149-
src: url('./fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf');
154+
font-family: "Roboto Condensed";
155+
src: url("./fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf");
150156
}
151157

152158
@font-face {
153-
font-family: 'Roboto Mono';
154-
src: url('./fonts/Roboto_Mono/static/RobotoMono-Regular.ttf');
159+
font-family: "Roboto Mono";
160+
src: url("./fonts/Roboto_Mono/static/RobotoMono-Regular.ttf");
155161
}
156162

157-
158-
p, body {
159-
font-family: 'Roboto Condensed', sans-serif;
163+
p,
164+
body {
165+
font-family: "Roboto Condensed", sans-serif;
160166
}
161167

162-
.page-title, .finish-title {
163-
font-family: 'Roboto', sans-serif;
168+
.page-title,
169+
.finish-title {
170+
font-family: "Roboto", sans-serif;
164171
color: #333;
165172
font-size: 1.4rem;
166173
font-weight: 400;
167174
margin-top: 10px;
168175
margin-bottom: 60px;
169176
}
170177
.question {
171-
font-family: 'Roboto Condensed', sans-serif;
178+
font-family: "Roboto Condensed", sans-serif;
172179
color: #333;
173180
font-size: 1.1rem;
174181
font-weight: 400;
175182
margin-top: 12px;
176183
margin-bottom: 7px;
177184
}
178185
.finish-paragraph {
179-
font-family: 'Roboto Condensed', sans-serif;
186+
font-family: "Roboto Condensed", sans-serif;
180187
color: #333;
181188
font-size: 1rem;
182189
font-weight: 400;
183190
line-height: 1.7;
184191
letter-spacing: normal;
185192
}
186193

187-
pre, .mono {
188-
font-family: 'Roboto Mono', sans-serif;
194+
pre,
195+
.mono {
196+
font-family: "Roboto Mono", sans-serif;
189197
}
190198

191-
192199
.red-border {
193-
border-color: #C10015;
200+
border-color: #c10015;
194201
border-width: 2px;
195202
}

0 commit comments

Comments
 (0)