mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-28 22:26:41 +07:00
Compare commits
No commits in common. "50560475463685a368a2ad630c8b7f7ce4ee3da6" and "606700f5d2b9692b530ba7068ba2f585153b179d" have entirely different histories.
5056047546
...
606700f5d2
4 changed files with 4 additions and 16 deletions
|
@ -78,7 +78,7 @@ const FlowStamp: FC<Props> = ({ isFluid, onToggleLayout }) => {
|
||||||
<Card className={styles.grid}>
|
<Card className={styles.grid}>
|
||||||
<SubTitle>Результаты поиска</SubTitle>
|
<SubTitle>Результаты поиска</SubTitle>
|
||||||
|
|
||||||
<div className={classNames(styles.items, styles.scrollable)}>
|
<div className={styles.items}>
|
||||||
<FlowSearchResults
|
<FlowSearchResults
|
||||||
hasMore={searchHasMore}
|
hasMore={searchHasMore}
|
||||||
isLoading={searchIsLoading}
|
isLoading={searchIsLoading}
|
||||||
|
|
|
@ -54,12 +54,6 @@
|
||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
@container sizer (width >= #{$flow_hide_recents}) {
|
|
||||||
&.scrollable {
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.search_icon {
|
.search_icon {
|
||||||
|
|
|
@ -59,11 +59,7 @@ const Header: FC<HeaderProps> = observer(() => {
|
||||||
className={classNames(styles.wrap, { [styles.is_scrolled]: isScrolled })}
|
className={classNames(styles.wrap, { [styles.is_scrolled]: isScrolled })}
|
||||||
>
|
>
|
||||||
<div className={styles.container}>
|
<div className={styles.container}>
|
||||||
<div
|
<div className={styles.logo_wrapper}>
|
||||||
className={classNames(styles.logo_wrapper, {
|
|
||||||
[styles.guest]: !isUser,
|
|
||||||
})}
|
|
||||||
>
|
|
||||||
<Logo />
|
<Logo />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -106,9 +106,7 @@
|
||||||
transform: translate(50%, 0) scaleX(0);
|
transform: translate(50%, 0) scaleX(0);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
transition:
|
transition: transform 0.5s, opacity 0.25s;
|
||||||
transform 0.5s,
|
|
||||||
opacity 0.25s;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
|
@ -161,7 +159,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo_wrapper:not(.guest) {
|
.logo_wrapper {
|
||||||
@include tablet {
|
@include tablet {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue