Spaces:
Sleeping
Sleeping
File size: 1,252 Bytes
13555f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | .SidebarUserMenu {
.logo {
display: flex;
flex-direction: row;
align-items: center;
.logo-title {
font-family: Metropolis, sans-serif;
display: flex;
align-items: center;
font-size: 16px;
margin-right: 5px;
cursor: pointer;
.FocalboardLogoIcon {
fill: rgba(var(--sidebar-text-rgb), 1);
color: rgba(var(--sidebar-text-rgb), 1);
height: 24px;
width: 22px;
margin-right: 3px;
position: relative;
bottom: 2px;
}
span {
height: 32px;
}
}
.versionFrame {
display: flex;
flex-direction: column;
align-items: center;
margin-left: 8px;
}
.version {
font-size: 11px;
line-height: 11px;
font-weight: 500;
color: rgba(var(--sidebar-text-rgb), 0.8);
}
.versionBadge {
font-size: 10px;
line-height: 11px;
font-weight: 500;
color: rgba(var(--sidebar-text-rgb), 0.8);
}
}
}
|