1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-28 14:16:41 +07:00

Compare commits

..

No commits in common. "50560475463685a368a2ad630c8b7f7ce4ee3da6" and "606700f5d2b9692b530ba7068ba2f585153b179d" have entirely different histories.

4 changed files with 4 additions and 16 deletions

View file

@ -78,7 +78,7 @@ const FlowStamp: FC<Props> = ({ isFluid, onToggleLayout }) => {
<Card className={styles.grid}>
<SubTitle>Результаты поиска</SubTitle>
<div className={classNames(styles.items, styles.scrollable)}>
<div className={styles.items}>
<FlowSearchResults
hasMore={searchHasMore}
isLoading={searchIsLoading}

View file

@ -54,12 +54,6 @@
flex: 1;
display: flex;
flex-direction: column;
@container sizer (width >= #{$flow_hide_recents}) {
&.scrollable {
overflow: auto;
}
}
}
.search_icon {

View file

@ -59,11 +59,7 @@ const Header: FC<HeaderProps> = observer(() => {
className={classNames(styles.wrap, { [styles.is_scrolled]: isScrolled })}
>
<div className={styles.container}>
<div
className={classNames(styles.logo_wrapper, {
[styles.guest]: !isUser,
})}
>
<div className={styles.logo_wrapper}>
<Logo />
</div>

View file

@ -106,9 +106,7 @@
transform: translate(50%, 0) scaleX(0);
opacity: 0;
border-radius: 3px;
transition:
transform 0.5s,
opacity 0.25s;
transition: transform 0.5s, opacity 0.25s;
}
&::after {
@ -161,7 +159,7 @@
}
}
.logo_wrapper:not(.guest) {
.logo_wrapper {
@include tablet {
display: none;
}