-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathStatusUpdates.vue
More file actions
44 lines (41 loc) · 1.07 KB
/
Copy pathStatusUpdates.vue
File metadata and controls
44 lines (41 loc) · 1.07 KB
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
<template>
<div class="container">
<details class="details">
<summary>
Walnut.Direct COVID-19 Updates
<br />
(click to expand/collapse)
</summary>
<p>
Be sure to stay distanced, walk on the right side of the hallway, and
follow all rules given by the administration for COVID-19 safety.
<b>
When our directions tell you to turn left out of a classroom, you may
have to turn right out of the classroom, then make a U-turn at the end
of the hallway.
</b>
Walnut.Direct takes the new one-way staircase rules into account when
providing directions.
</p>
<p>
Walnut.Direct does not currently include outdoor routes, but if you know
how to get to a room by going outdoors, we recommend that.
</p>
</details>
</div>
</template>
<style scoped>
.container {
display: flex;
justify-content: center;
margin-bottom: 0;
}
.details {
font-size: 16px;
padding: 1rem 1rem;
max-width: 70rem;
}
p {
margin: 0.5rem;
}
</style>