Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kuciapakrystian committed May 26, 2024
1 parent bacdbfd commit f8158b4
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions src/Styles/GlobalStyles.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
import { css } from '@emotion/react';

export const GlobalStyles = css`
*,
::before,
::after {
box-sizing: border-box;
}
html {
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
'Helvetica Neue', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0;
}
ul,
ol {
list-style: none;
padding-left: 0;
margin: 0;
}
button {
padding: 0;
border: none;
font: inherit;
color: inherit;
cursor: pointer;
}
a {
text-decoration: none;
color: inherit;
}
img {
display: block;
max-width: 100%;
height: auto;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
`;

0 comments on commit f8158b4

Please sign in to comment.