You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
memos/web/src/less/user-banner.less

32 lines
673 B
Plaintext

@import "./mixin.less";
.user-banner-container {
.flex(row, space-between, center);
@apply w-full h-auto px-6 flex-nowrap mb-1;
> .username-container {
@apply shrink flex flex-row justify-start items-center flex-nowrap truncate;
> .username-text {
@apply font-bold text-lg pr-1 text-slate-800 cursor-pointer shrink truncate;
}
> .tag {
@apply text-xs px-1 bg-blue-500 rounded text-white;
}
}
> .action-btn {
@apply shrink-0 select-none border-none;
&.menu-popup-btn {
.flex(column, center, center);
@apply w-9 h-10 -mr-2 cursor-pointer;
> .icon-img {
@apply w-5 h-auto;
}
}
}
}