Skip to content

Commit

Permalink
refactor: review the page layout and menu logic
Browse files Browse the repository at this point in the history
  • Loading branch information
totakoko committed Jan 5, 2024
1 parent 053b729 commit 71b9e48
Show file tree
Hide file tree
Showing 15 changed files with 1,072 additions and 675 deletions.
22 changes: 22 additions & 0 deletions src/components/shared/page/SimplePage.styles.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import styled from 'styled-components';

export const FullScreenModeFirstLine = styled.div`
@media (min-width: 992px) {
display: none;
}
`;

export const FullScreenModeNavLogo = styled.li`
@media (max-width: 991px) {
display: none;
}
`;

export const FullScreenItems = styled.div`
flex-grow: 1;
display: flex;
align-items: center;
.fr-header__search {
display: none;
}
`;
Loading

0 comments on commit 71b9e48

Please sign in to comment.