You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
552 B
SCSS
31 lines
552 B
SCSS
// Copyright (C) 2022 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
@import '../../../base.scss';
|
|
|
|
.cvat-dropdown-menu-paper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: $background-color-1;
|
|
padding: $grid-unit-size;
|
|
border-radius: 4px;
|
|
box-shadow: $box-shadow-base;
|
|
|
|
> * {
|
|
&:not(:first-child) {
|
|
margin-top: $grid-unit-size;
|
|
}
|
|
|
|
width: 100%;
|
|
|
|
.ant-upload {
|
|
width: 100%;
|
|
|
|
button {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|