Responsiveness change
This commit is contained in:
parent
b9f6c71fb7
commit
ac593b3e72
2 changed files with 7 additions and 1 deletions
|
@ -6,7 +6,7 @@ import { BrowserRouter } from "react-router-dom"
|
||||||
|
|
||||||
ReactDOM.createRoot(document.getElementById("root")).render(
|
ReactDOM.createRoot(document.getElementById("root")).render(
|
||||||
<React.StrictMode>
|
<React.StrictMode>
|
||||||
<BrowserRouter basename={import.meta.env.BASE_URL}>
|
<BrowserRouter>
|
||||||
<App />
|
<App />
|
||||||
</BrowserRouter>
|
</BrowserRouter>
|
||||||
</React.StrictMode>
|
</React.StrictMode>
|
||||||
|
|
|
@ -19,6 +19,12 @@
|
||||||
box-shadow: 5px 5px 50px #00000030;
|
box-shadow: 5px 5px 50px #00000030;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1200px) {
|
||||||
|
.Thumb {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.Summary {
|
.Summary {
|
||||||
background: linear-gradient(#00000050, black);
|
background: linear-gradient(#00000050, black);
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
|
Reference in a new issue