Merge pull request #7 from telerik/drawer-fixes

fix: fix drawer on smaller screen
This commit is contained in:
Silviya Boteva 2021-01-04 13:52:12 +02:00 коммит произвёл GitHub
Родитель aad06e7e6d 6971f3f6df
Коммит 6309885b17
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 13 удалений

Просмотреть файл

@ -74,6 +74,7 @@ class DrawerRouterContainer extends React.Component {
/>
<Drawer
expanded={this.state.expanded}
animation={{duration: 100}}
items={items.map((item) => ({
...item,
text: localizationService.toLanguageString(`custom.${item.name}`),

Просмотреть файл

@ -14,25 +14,16 @@ a {
// App styles
.k-drawer-container {
background-color: $background-color;
min-height: calc(100vh - 80px);
.k-drawer {
box-shadow: 0 0 10px rgba(0,0,0,.2);
border-right-width: 0 !important;
}
.k-drawer-wrapper {
position: fixed;
}
&.k-drawer-expanded .k-drawer-wrapper {
width: 240px !important;
}
& .k-drawer-wrapper {
width: 50px !important;
opacity: 1;
transition: all 200ms ease 0s;
&.k-drawer-push .k-drawer {
position: sticky;
top: 80px;
height: calc(100vh - 80px);
}
.k-drawer-item {