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

49 lines
1.1 KiB
Plaintext

4 years ago
@import "./mixin.less";
.user-banner-container {
.flex(column, flex-start, flex-start);
@apply w-full h-auto;
4 years ago
> .userinfo-header-container {
.flex(row, space-between, center);
@apply w-full px-6 flex-nowrap mb-1;
4 years ago
> .username-text {
@apply font-bold text-lg text-slate-800 overflow-hidden cursor-pointer shrink-0 text-ellipsis;
4 years ago
max-width: calc(100% - 32px);
}
> .action-btn {
@apply flex-shrink-0 select-none border-none;
4 years ago
background-color: unset;
&.menu-popup-btn {
.flex(column, center, center);
@apply w-9 h-10 -mr-2 cursor-pointer;
4 years ago
> .icon-img {
@apply w-5 h-auto;
4 years ago
}
}
}
}
> .status-text-container {
.flex(row, space-between, flex-start);
@apply px-6 w-full select-none mb-3;
4 years ago
> .status-text {
.flex(column, flex-start, flex-start);
> .amount-text {
@apply font-bold text-2xl opacity-80 leading-10;
4 years ago
color: @text-black;
}
> .type-text {
@apply text-gray-400 text-xs font-mono;
4 years ago
}
}
}
}