diff options
| author | ab <abdullah_ahmed@brown.edu> | 2020-02-09 18:11:32 -0500 |
|---|---|---|
| committer | ab <abdullah_ahmed@brown.edu> | 2020-02-09 18:11:32 -0500 |
| commit | 9953433d0019f53474f3a50fe96f04a1e7af543f (patch) | |
| tree | 562abe2aadb6ecb443165b69a3691cb7a2915900 /src/client/views/animationtimeline/Timeline.scss | |
| parent | cb140cb5387836de1e2287ed9519a132f0f9d28f (diff) | |
| parent | 45a8133bfaf4e3722db5da833ade42220d303126 (diff) | |
Merge branch 'monika_animation' of https://github.com/browngraphicslab/Dash-Web into monika_animation
Diffstat (limited to 'src/client/views/animationtimeline/Timeline.scss')
| -rw-r--r-- | src/client/views/animationtimeline/Timeline.scss | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/src/client/views/animationtimeline/Timeline.scss b/src/client/views/animationtimeline/Timeline.scss index a99d017f4..f90249771 100644 --- a/src/client/views/animationtimeline/Timeline.scss +++ b/src/client/views/animationtimeline/Timeline.scss @@ -34,29 +34,44 @@ $timelineDark: #77a1aa; } .grid-box { - display: grid; - grid-template-columns: [first] 50% [line2] 25% [line3] 25%; + display: flex; + // grid-template-columns: [first] 20% [line2] 20% [line3] 60%; width: calc(100% - 150px); // width: 100%; margin-left: 10px; .time-box { - margin-left: 5px; + margin-left: 10px; min-width: 140px; display: flex; justify-content: center; align-items: center; - // grid-column-start: line2; + + .resetView-tool { + width: 30px; + height: 30px; + display: flex; + justify-content: center; + align-items: center; + margin: 3px; + color: $timelineDark; + } + + .resetView-tool:hover { + -webkit-transform: scale(1.1); + -ms-transform: scale(1.1); + transform: scale(1.1); + transition: .2s ease; + } } .mode-box { display: flex; margin-left: 5px; - // grid-column-start: line3; } .overview-box { - width: 100%; + width: 80%; display: flex; } |
