diff options
author | crupest <crupest@outlook.com> | 2021-04-16 17:43:16 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-16 17:43:16 +0800 |
commit | 2981b7fb9002ee424a4e4358f04914de63f60141 (patch) | |
tree | 3a94b828f93dd457060999ae989c988ef32f1812 /FrontEnd/src/app/views/center/center.sass | |
parent | 3db441fccf1a933ac8ec9e4f89c19f81efd66052 (diff) | |
download | timeline-2981b7fb9002ee424a4e4358f04914de63f60141.tar.gz timeline-2981b7fb9002ee424a4e4358f04914de63f60141.tar.bz2 timeline-2981b7fb9002ee424a4e4358f04914de63f60141.zip |
...
Diffstat (limited to 'FrontEnd/src/app/views/center/center.sass')
-rw-r--r-- | FrontEnd/src/app/views/center/center.sass | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/FrontEnd/src/app/views/center/center.sass b/FrontEnd/src/app/views/center/center.sass new file mode 100644 index 00000000..4b86f241 --- /dev/null +++ b/FrontEnd/src/app/views/center/center.sass @@ -0,0 +1,36 @@ +.timeline-board
+ @extend .cru-card
+ @extend .d-flex
+ @extend .flex-column
+ @extend .py-3
+ min-height: 200px
+ height: 100%
+ position: relative
+
+.timeline-board-header
+ @extend .px-3
+ display: flex
+ align-items: center
+ justify-content: space-between
+
+.timeline-board-item
+ font-size: 1.1em
+ @extend .px-3
+ height: 48px
+ transition: background 0.3s
+ display: flex
+ align-items: center
+ .icon
+ height: 1.3em
+ color: black
+ @extend .mr-2
+ &:hover
+ background: $gray-300
+ .right
+ display: flex
+ align-items: center
+ flex-shrink: 0
+ .title
+ white-space: nowrap
+ overflow: hidden
+ text-overflow: ellipsis
|