diff --git a/source/public/games/click/index.css b/source/public/games/click/index.css index e5e3a6a..af41ee3 100644 --- a/source/public/games/click/index.css +++ b/source/public/games/click/index.css @@ -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); -} \ No newline at end of file + border: 0; + width: 10vw; + height: 10vw; + margin: auto auto auto auto; + background-color: var(--main-color); +} diff --git a/source/public/projects/3d/index.css b/source/public/projects/3d/index.css index bd65bb7..0652556 100644 --- a/source/public/projects/3d/index.css +++ b/source/public/projects/3d/index.css @@ -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; } diff --git a/source/src/App.tsx b/source/src/App.tsx index 534ceee..b6a8947 100644 --- a/source/src/App.tsx +++ b/source/src/App.tsx @@ -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; } diff --git a/source/src/components/ThemeToggleButton.tsx b/source/src/components/ThemeToggleButton.tsx index 57ce8ce..8c72b5c 100644 --- a/source/src/components/ThemeToggleButton.tsx +++ b/source/src/components/ThemeToggleButton.tsx @@ -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);", })}; `