blob: 0773a039cfec2b4265a1905ef3dedf0d537ef8a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<template>
<header>
<div id="nav">
<img src="@/assets/quests-logo.png" alt="Quests logo" />
<h1>Quests Web Editor</h1>
<code>Preview</code>
</div>
</header>
</template>
<style lang="scss" scoped>
#nav {
padding: 1rem 1rem 0.5rem 1rem;
display: flex;
align-items: center;
justify-content: flex-start;
max-height: 72px;
gap: 1rem;
color: var(--color-header-text);
img {
max-width: 3rem;
height: auto;
}
h1 {
font-size: 1.5rem;
margin: -5px 0 0 0;
font-weight: 700;
}
code {
font-size: 0.8rem;
color: var(--color-header-text-mute);
}
}
header {
border-bottom: 1px solid var(--color-border);
background-color: var(--color-header);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
position: relative;
z-index: 1;
}
</style>
|