Skip to content

Commit

Permalink
fix: iphoneでスクロールできない件
Browse files Browse the repository at this point in the history
  • Loading branch information
mnsinri committed Oct 14, 2024
1 parent 9d58960 commit cb29e7e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ module.exports = {
rules: {
quotes: ["error", "double"],
"import/no-unresolved": "off",
"no-case-declarations": "off"
"no-case-declarations": "off",
"prettier/prettier": [
"error",
{
endOfLine: 'auto'
}
]
},
};
4 changes: 2 additions & 2 deletions src/components/mainContainer/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { breakpointMediaQueries } from "src/configs";
import styled from "styled-components";

export const Background = styled.div`
width: 100vw;
height: 100vh;
width: 100svw;
height: 100svh;
background-color: ${({ theme }) => theme.bg};
transition: background-color 0.3s ease;
`;
Expand Down

0 comments on commit cb29e7e

Please sign in to comment.