first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-10-14 22:02:57 -04:00
commit 5f95d857d4
783 changed files with 112323 additions and 0 deletions
@@ -0,0 +1,31 @@
.currentDate {
border: 1px solid #E2E8F0;
border-radius: 4px;
display: flex;
align-items: center;
color: var(--primaryColor);
padding: 10px 20px 10px 50px;
font-weight: 500;
font-size: 14px;
position: relative;
}
.currentDate i {
margin-right: 10px;
font-size: 20px;
position: absolute;
left: 20px;
}
@media only screen and (max-width: 767px) {
.currentDate {
display: none;
}
}
/* For dark mode */
[class="dark"] .currentDate {
border: 1px solid #373a40;
}
[class="topNavbarDark dark"] .currentDate {
border: 1px solid #373a40;
}