We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3520247 commit 9ef80f8Copy full SHA for 9ef80f8
src/Toolbar/Toolbar.css
@@ -4,15 +4,14 @@
4
display: flex;
5
align-items: center;
6
justify-content: space-between;
7
- background-color: #FFF;
8
- box-shadow: 0px 2px 8px rgba(41, 49, 58, 0.15);
+ background-color: rgba(255,255,255,0);
9
box-sizing: border-box;
10
-
+ box-shadow: none;
11
width: 100%;
12
height: 40px;
13
padding: 24px 0;
14
15
- transition-property: height;
+ transition-property: height background-color box-shadow;
16
transition-duration: 500ms;
17
transition-timing-function: ease;
18
}
@@ -25,4 +24,6 @@
25
24
26
.toolbar.expanded {
27
height: 120px;
+ background-color: #FFF;
28
+ box-shadow: 0px 2px 8px rgba(41, 49, 58, 0.15);
29
0 commit comments