Compare commits

..

No commits in common. "a143cea88dc1087f78c084b5341f30f897c22604" and "bdae0d5344c39b6ccc81a53fa3207d55e893552f" have entirely different histories.

4 changed files with 1 additions and 37 deletions

View file

@ -10,7 +10,6 @@ header {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
z-index: 1000;
font-family: var(--font-family);
height: 5vh;
}
header li {

View file

@ -5,8 +5,8 @@
overflow: hidden;
background-color: var(--history-background-color);
padding: 1em;
margin: 1em;
border-radius: 2em;
margin: 1em;
}
.history {

View file

@ -11,4 +11,3 @@
@import './input.css';
@import './faq.css';
@import './scrollbar.css';
@import './responsive.css';

View file

@ -1,34 +0,0 @@
/* responsive.css */
/* Responsive behavior - applies only on smaller screens */
@media (max-width: 1200px) {
/* Left panel as an overlay */
.left-panel {
margin: 0 auto;
min-width: 100vw;
max-width: 100vw;
padding: 1em;
}
.left-panel.hidden {
width: 0; /* Set width to 0 when hidden */
visibility: hidden; /* Fully hide the panel */
margin: 0;
padding: 0;
overflow: hidden;
}
header {
height: 125px;
}
header li {
flex-direction: column;
display: block;
padding: 2px;
}
body {
margin-top: 100px;
}
}