28 lines
547 B
SCSS
28 lines
547 B
SCSS
.demo-floating-tabs {
|
|
* {
|
|
--ion-background-color: white;
|
|
--ion-tab-bar-color: rgb(92, 123, 207);
|
|
--ion-tab-bar-color-selected: rgb(255, 255, 255);
|
|
}
|
|
|
|
ion-tab-bar {
|
|
--background: rgb(44, 83, 192);
|
|
box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.4);
|
|
border-radius: 16px !important;
|
|
|
|
height: 50px;
|
|
width: 90%;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
|
|
bottom: 20px;
|
|
position: relative;
|
|
margin: 0 auto !important;
|
|
border-top: none;
|
|
}
|
|
|
|
ion-tab-button {
|
|
border-radius: 16px !important;
|
|
}
|
|
}
|