FarmMapsLib/projects/common/src/fm/components/user-menu/user-menu.component.scss

46 lines
776 B
SCSS
Raw Normal View History

2020-06-12 10:24:08 +00:00
.menu-button {
2020-06-24 11:08:13 +00:00
background-color: purple;
2020-06-12 10:24:08 +00:00
display: inline-block;
width: 2.5em;
height: 2.5em;
line-height: 2.5em;
text-align: center;
font-size: 1rem;
2020-06-24 11:08:13 +00:00
position: relative;
display: inline-block;
}
div.menu-button > span {
color:white;
}
2020-06-24 13:49:57 +00:00
.menu {
max-height: 100vh;
2020-06-26 06:49:35 +00:00
//transition: max-height 0.2s;
2020-06-24 13:49:57 +00:00
overflow: hidden;
box-shadow: 0 0 20px rgba(0,0,0,.3);
2020-06-24 11:08:13 +00:00
position: absolute;
top: 3rem;
right:0;
2020-06-24 13:49:57 +00:00
}
.card {
2020-06-24 11:08:13 +00:00
padding:0.5rem;
2020-06-24 13:49:57 +00:00
min-width: 10rem;
overflow: hidden;
2020-06-24 11:08:13 +00:00
}
.username {
white-space: nowrap;
font-weight: 500;
font-size: 1.2rem;
line-height: 1.2rem;
}
.card-body {
text-align: left;
2020-06-24 13:07:11 +00:00
}
.hidden {
2020-06-24 13:49:57 +00:00
max-height: 0;
2020-06-12 10:24:08 +00:00
}