-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from EnigmaVSSUT/eventFunction
update date format
- Loading branch information
Showing
4 changed files
with
33 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,5 +31,6 @@ export default function Events() { | |
|
||
</Stack> | ||
</AnimatePage> | ||
) | ||
); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,42 @@ | ||
@keyframes fillAnimation { | ||
0% { | ||
width: 0; | ||
} | ||
100% { | ||
width: 100%; | ||
} | ||
0% { | ||
width: 0; | ||
} | ||
.divider, .dividerGreen { | ||
position: relative; | ||
100% { | ||
width: 100%; | ||
transition: width 0.5s; | ||
animation: fillAnimation 2s; | ||
animation-fill-mode: forwards; | ||
} | ||
} | ||
.divider, .dividerGreen { | ||
position: relative; | ||
width: 100%; | ||
transition: width 0.5s; | ||
animation: fillAnimation 2s; | ||
animation-fill-mode: forwards; | ||
} | ||
|
||
.eventcard:hover { | ||
cursor: pointer; | ||
box-shadow: 0 0 2px 1px rgba(68, 237, 63, 0.2); | ||
} | ||
.eventcard:hover { | ||
cursor: pointer; | ||
box-shadow: 0 0 2px 1px rgba(68, 237, 63, 0.2); | ||
} | ||
|
||
|
||
|
||
.eventcard:hover .dividerGreen{ | ||
display: block; | ||
border-color: #6ffa53; | ||
} | ||
|
||
.dividerGreen{ | ||
display: none; | ||
} | ||
.eventcard:hover .dividerGreen{ | ||
display: block; | ||
border-color: #6ffa53; | ||
} | ||
|
||
.calender{ | ||
.dividerGreen{ | ||
display: none; | ||
} | ||
|
||
.calender{ | ||
border: 1px solid rgba(43, 201, 37, 0.2); | ||
box-shadow: 0 0px 6px 2px rgba(43, 201, 37, 0.2); | ||
border-radius: 10px; | ||
height: fit-content; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
} | ||
|