Hide end nav section on small screens

This commit is contained in:
Daniel Lundin
2019-10-09 12:54:36 +02:00
parent c2acb485c7
commit 0aeff20c97
+9 -1
View File
@@ -8,13 +8,21 @@
export let user;
</script>
<style>
@media screen and (max-width: 800px) {
.user {
display: none;
}
}
</style>
<TopAppBar variant="static" color="primary">
<Row>
<Section>
<Title>Wireguard VPN</Title>
</Section>
<Section align="end" toolbar>
Logged in as {user}
<small class="user">Logged in as {user}</small>
</Section>
</Row>
</TopAppBar>