diff options
author | crupest <crupest@outlook.com> | 2020-11-03 22:50:00 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-11-03 22:50:00 +0800 |
commit | 457f4b2141d7380c0521fb2b6132f0bde0cf7315 (patch) | |
tree | 8f3288a4b2e445becdd8ed783f06ce8c562dbdb5 /FrontEnd/src/app/views/home/home.sass | |
parent | 1ecd77cf83049792d0d6380f0f65f9400e78c403 (diff) | |
download | timeline-457f4b2141d7380c0521fb2b6132f0bde0cf7315.tar.gz timeline-457f4b2141d7380c0521fb2b6132f0bde0cf7315.tar.bz2 timeline-457f4b2141d7380c0521fb2b6132f0bde0cf7315.zip |
feat: Add timeline title to home page.
Diffstat (limited to 'FrontEnd/src/app/views/home/home.sass')
-rw-r--r-- | FrontEnd/src/app/views/home/home.sass | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/FrontEnd/src/app/views/home/home.sass b/FrontEnd/src/app/views/home/home.sass index 28a2e5f3..0c01019b 100644 --- a/FrontEnd/src/app/views/home/home.sass +++ b/FrontEnd/src/app/views/home/home.sass @@ -1,13 +1,18 @@ -.timeline-board-item
- font-size: 1.1em
- @extend .my-2
- .icon
- height: 1.3em
- @extend .mr-2
-
.timeline-board
@extend .cru-card
@extend .d-flex
@extend .flex-column
- @extend .p-3
+ @extend .py-3
min-height: 200px
+
+.timeline-board-item
+ font-size: 1.1em
+ @extend .px-3
+ @extend .py-2
+ transition: background 0.3s
+ .icon
+ height: 1.3em
+ color: black
+ @extend .mr-2
+ &:hover
+ background: $gray-300
|