Add app menu with sign in/out links

This commit is contained in:
2023-04-02 00:54:18 +02:00
parent 66f098f479
commit c72144ff22
4 changed files with 37 additions and 34 deletions

View File

@@ -13,3 +13,24 @@
*= require_tree .
*= require_self
*/
.app-menu {
height: 2.1em;
}
.app-menu a {
color: black;
float: right;
font-size: 0.9em;
padding: 0.6em;
}
.app-menu a:hover {
background-color: #009ade;
border-radius: 0.2em;
color: white;
cursor: pointer;
text-decoration: none;
}
a:not(:hover) {
text-decoration: none;
}