|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .top-bar-holder {
- background-image: url('../../assets/custom/background-5.svg');
- background-size: cover;
- background-repeat: no-repeat;
- background-position: left top;
- padding-top: 80px;
- }
-
- .header-bar {
- color: white;
- display: flex;
- padding: 20px;
- align-items: center;
- background-image: url('../../assets/custom/background-5.svg');
- background-size: cover;
- background-repeat: no-repeat;
- background-position: left top;
- position: fixed;
- left: 0;
- top: 0;
- z-index: 2;
- width: 100%;
-
- h2 {
- font-size: 20px;
- margin: 0 auto 0 10px;
- }
-
- button {
- margin: 0;
- border-radius: 50%;
- color: var(--brand-blue);
- width: 30px;
- height: 30px;
- background-color: white;
- font-size: 14px;
-
- ion-icon[name="arrow-back"] {
- font-size: 18px;
- }
- }
- }
-
- .tabs-holder {
- width: 100%;
- padding: 0 20px 20px;
- overflow: scroll;
- white-space: nowrap;
-
- button {
- display: inline-block;
- border-radius: 20px;
- background-color: transparent;
- color: white;
- font-size: 10px;
- padding: 5px 15px;
- height: 30px;
- margin-right: 10px;
- font-weight: bold;
-
- &.active {
- background-color: white;
- color: var(--brand-blue);
- }
- }
- }
|