parent
49de7b1c64
commit
99d730d0e3
6 changed files with 14 additions and 7 deletions
|
@ -69,6 +69,9 @@ $actions-z-index: 2;
|
|||
margin-top: 3px;
|
||||
}
|
||||
}
|
||||
.claim__menu-button {
|
||||
right: -8px;
|
||||
}
|
||||
}
|
||||
|
||||
.mb-xl {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.claim-list {
|
||||
// List view
|
||||
.claim-preview__wrapper:not(.claim-preview__wrapper--channel):not(.claim-preview__wrapper--small) {
|
||||
// List view :not(.claim-preview__wrapper--channel)
|
||||
.claim-preview__wrapper:not(.claim-preview__wrapper--small) {
|
||||
padding: var(--spacing-m);
|
||||
background-color: rgba(var(--color-header-background-base), 0.6);
|
||||
|
||||
|
@ -1194,6 +1194,7 @@
|
|||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
display: unset;
|
||||
|
||||
&:hover {
|
||||
opacity: 0.8;
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
|
||||
&:not(:first-of-type) {
|
||||
margin-top: 0;
|
||||
padding-left: var(--spacing-m);
|
||||
// padding-left: var(--spacing-m);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -290,8 +290,11 @@ $recent-msg-button__height: 2rem;
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.button--secondary {
|
||||
background-color: var(--color-header-button) !important;
|
||||
.section__actions {
|
||||
justify-content: center;
|
||||
.button--secondary {
|
||||
background-color: var(--color-header-button) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -318,7 +318,7 @@ $contentMaxWidth: 60rem;
|
|||
}
|
||||
|
||||
.notification__bubble--small {
|
||||
font-size: var(--font-xsmall);
|
||||
font-size: var(--font-xxsmall);
|
||||
}
|
||||
|
||||
.notification__bubble--inline {
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
// @flow
|
||||
|
||||
export const buildUnseenCountStr = (unseenCount: number) => (unseenCount > 20 ? '20+' : `${unseenCount}`);
|
||||
export const buildUnseenCountStr = (unseenCount: number) => (unseenCount > 99 ? '99+' : `${unseenCount}`);
|
||||
|
|
Loading…
Reference in a new issue