54 lines
879 B
SCSS
54 lines
879 B
SCSS
.field-DropDown-Session {
|
|
width: 200px !important;
|
|
}
|
|
|
|
.component-add {
|
|
font-size: 25px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.component-table {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
height: 300px;
|
|
width: 100%;
|
|
overflow-y: scroll;
|
|
& .ant-table-wrapper table {
|
|
width: 100%;
|
|
}
|
|
}
|
|
// Sree
|
|
.component-table-purchae {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
height: max-content;
|
|
max-height: 300px;
|
|
width: 100%;
|
|
overflow-y: scroll;
|
|
& .ant-table-wrapper table {
|
|
width: 80%;
|
|
}
|
|
}
|
|
|
|
.component-table-new {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
height: 400px;
|
|
width: 100%;
|
|
overflow-y: scroll;
|
|
& .ant-table-wrapper table {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.component-table-new .ant-pagination {
|
|
position: sticky;
|
|
bottom: 0;
|
|
margin: 0 !important;
|
|
padding: 0.5rem;
|
|
background-color: #fafafa;
|
|
}
|