chore: cleanup/resolve PR comments

This commit is contained in:
Razboy20
2024-03-06 15:13:11 -06:00
parent 0c44849e15
commit 8f360206fb
36 changed files with 380 additions and 26853 deletions

View File

@@ -25,16 +25,6 @@
font-style: normal;
}
@font-face {
font-family: 'Material Icons Round';
font-style: normal;
font-display: block;
font-weight: 400;
src: url('@public/fonts/material-icons.woff2') format('woff2');
}
$normal_weight: 500; // Used by <Icon>, will be removed later
$medium_size: 16px;
:export {

View File

@@ -1,28 +0,0 @@
.arrow {
margin-left: auto; // Pushes the arrow to the right
display: inline-block;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid orange; // Use your desired color for the arrow
transition: transform 0.3s ease; // smooth transition for rotation
}
.expanded {
transform: rotate(180deg);
}
.scheduleItem {
border: 1px solid #ccc; /* Example border */
margin: 8px 0; /* Increased spacing */
padding: 10px; /* Inner spacing */
border-radius: 4px; /* Rounded corners */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
background-color: #fff; /* Ensure background contrast */
cursor: pointer;
&:hover {
background-color: #f9f9f9; /* Hover effect */
}
}