remove unused css files

This commit is contained in:
nflnkr 2024-01-20 17:27:58 +03:00
parent 39fb9bd5dc
commit dd9003b403
4 changed files with 0 additions and 115 deletions

@ -1,37 +0,0 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/*скрывает все скролл-бары*/
body * {
-ms-overflow-style: none;
scrollbar-width: none;
}
body * ::-webkit-scrollbar {
display: none;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
@keyframes blinking {
0% {
opacity: 100;
}
50% {
opacity: 0;
}
100% {
opacity: 100;
}
}
.blink {
animation: blinking 2s infinite ;
}

@ -1,7 +1,6 @@
import "dayjs/locale/ru";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
const root = createRoot(document.getElementById("root")!);

@ -1,76 +0,0 @@
.ReactCrop__drag-bar,
.ord-e {
background-color: #7e2aea;
}
.ReactCrop__crop-selection:not(.ReactCrop--no-animate .ReactCrop__crop-selection) {
background-image: none;
}
.ReactCrop__drag-bar.ord-e {
right: 0;
top: 0;
width: 3px;
height: 100%;
margin-right: -3px;
}
.ReactCrop__drag-bar.ord-s {
bottom: 0;
left: 0;
width: 100%;
height: 3px;
margin-bottom: -3px;
}
.ReactCrop__drag-bar.ord-n {
bottom: 0;
left: 0;
width: 100%;
height: 3px;
margin-bottom: -3px;
}
.ReactCrop__drag-bar.ord-w {
top: 0;
left: 0;
width: 3px;
height: 100%;
margin-left: -3px;
}
/* кружочки */
.ReactCrop .ord-nw:after {
background-color: #7e2aea;
}
.ReactCrop .ord-n:after {
background-color: #7e2aea;
}
.ReactCrop .ord-ne:after {
background-color: #7e2aea;
}
.ReactCrop .ord-se:after {
background-color: #7e2aea;
}
.ReactCrop .ord-e:after {
background-color: #7e2aea;
}
.ReactCrop .ord-s:after {
background-color: #7e2aea;
}
.ReactCrop .ord-sw:after {
background-color: #7e2aea;
}
.ReactCrop .ord-w:after {
background-color: #7e2aea;
}
/* кружочки */

@ -1,6 +1,5 @@
import { Root, createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
let root: Root | undefined = undefined;