removed unused css

This commit is contained in:
Kim, Jimin 2021-10-14 12:56:56 +09:00
parent a6fbe9e026
commit 0ee1114322
4 changed files with 27 additions and 40 deletions

View file

@ -1,53 +1,50 @@
*, *::after, *::before {
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
*,
*::after,
*::before {
box-sizing: border-box;
user-select: none;
}
:root {
--main-color: white;
--background-color: black;
--main-color: white;
--background-color: black;
}
body {
margin: 0;
background-color: var(--background-color);
margin: 0;
background-color: var(--background-color);
}
.menu {
margin: 0 auto;
padding: 10px;
position: relative;
margin: 0 auto;
padding: 10px;
position: relative;
}
.clicker {
border-radius: 50%;
background-color: var(--main-color);
position: absolute;
border-radius: 50%;
background-color: var(--main-color);
position: absolute;
}
.winner.show {
display: flex;
display: flex;
}
#timer {
color: var(--main-color);
font-size: 5rem;
color: var(--main-color);
font-size: 5rem;
}
.gameArea {
border: 0;
margin: auto auto auto auto;
border: 0;
margin: auto auto auto auto;
}
.primer {
border: 0;
width: 10vw;
height: 10vw;
margin: auto auto auto auto;
background-color: var(--main-color);
}
border: 0;
width: 10vw;
height: 10vw;
margin: auto auto auto auto;
background-color: var(--main-color);
}

View file

@ -35,9 +35,6 @@ button {
padding: 10px;
box-sizing: border-box;
text-align: center;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
z-index: 1;
@ -51,9 +48,6 @@ select {
}
.dg.ac {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
z-index: 2 !important;
}

View file

@ -52,7 +52,6 @@ const globalStyle = css`
font-size: ${theming.size.medium};
font-family: ${theming.font.regular};
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}

View file

@ -12,10 +12,7 @@ const StyledThemeButton = styled.div`
${(props) =>
theming.theme(props.theme.currentTheme, {
light: "",
dark: "transform: scaleX(-1);\
-moz-transform: scaleX(-1);\
-webkit-transform: scaleX(-1);\
-ms-transform: scaleX(-1);",
dark: "transform: scaleX(-1);",
})};
`