1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| /**
| * nav-bar
| * @author Tevin
| */
|
| @import "../../../common/sassMixin";
|
| .c-nav-bar {
| position: relative;
| .at-nav-bar {
| background-color: #1e8ad2;
| }
| .at-nav-bar__left-view,
| .at-nav-bar__right-view,
| .at-nav-bar__title {
| color: #fff;
| }
| .c-nav-bar-right {
| @include position(absolute, 0 n n 0);
| @include flexbox(flex, center center);
| height: 100%;
| padding: 0 0.3rem 0 1rem;
| font-size: 0.65rem;
| color: #fff;
| }
| }
|
|