element-call/src/Header.module.css

51 lines
723 B
CSS
Raw Normal View History

2021-08-19 17:49:45 -07:00
.header {
position: relative;
display: flex;
justify-content: center;
align-items: center;
2021-08-23 12:50:19 -07:00
height: 64px;
2021-08-19 17:49:45 -07:00
user-select: none;
2021-08-20 16:23:12 -07:00
flex-shrink: 0;
2021-08-19 17:49:45 -07:00
}
.leftNav {
position: absolute;
left: 20px;
}
.logo {
display: flex;
align-items: center;
text-decoration: none;
}
.rightNav {
position: absolute;
right: 20px;
2021-08-23 12:59:24 -07:00
max-width: 40%;
2021-08-20 16:23:12 -07:00
white-space: nowrap;
display: flex;
}
.userName {
font-weight: 600;
margin-right: 8px;
text-overflow: ellipsis;
overflow: hidden;
flex-shrink: 1;
}
.signOutButton {
background: transparent;
border: none;
color: rgb(255, 75, 85);
cursor: pointer;
font-weight: 600;
flex-shrink: 0;
}
2021-08-23 12:50:19 -07:00
@media(min-width: 800px) {
.header {
height: 98px;
}
}