-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a508d76
commit 44907d7
Showing
2 changed files
with
24 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,37 @@ | ||
<template> | ||
<nav class="navbar is-transparent" role="navigation" aria-label="main navigation"> | ||
<div class="navbar-brand columns"> | ||
<a class="column is-3" href="/"> | ||
<img src="../../src/assets/images/logo.svg" width="32" height="32"> SureLink | ||
</a> | ||
</div> | ||
</nav> | ||
<nav class="navbar is-transparent" role="navigation" aria-label="main navigation"> | ||
<div class="navbar-brand"> | ||
<a href="/"> | ||
<img src="../../src/assets/images/logo.svg" width="32" height="32"> SureLink | ||
</a> | ||
</div> | ||
</nav> | ||
</template> | ||
<script> | ||
export default { | ||
name: 'Navbar' | ||
name: 'Navbar' | ||
} | ||
</script> | ||
<style> | ||
.navbar .navbar-brand { | ||
text-align: center; | ||
display: block; | ||
width: 100%; | ||
text-align: center; | ||
display: block; | ||
width: 100%; | ||
} | ||
nav.navbar { | ||
min-height: unset; | ||
height: 0; | ||
font-family: 'Roboto'; | ||
padding: 0; | ||
min-height: unset; | ||
height: 0; | ||
font-family: 'Roboto'; | ||
padding: 0; | ||
} | ||
a { | ||
text-decoration: none !important; | ||
text-decoration: none !important; | ||
} | ||
.navbar .navbar-brand>.navbar-item, | ||
.navbar .navbar-brand > .navbar-item, | ||
.navbar .navbar-brand { | ||
display: inline-block; | ||
display: inline-block; | ||
} | ||
</style> |