mirror of
https://github.com/aleleba/react-list-ui-library.git
synced 2025-05-13 06:17:49 -06:00
41 lines
750 B
SCSS
41 lines
750 B
SCSS
.List {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 600px;
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
background: #FFF;
|
|
box-shadow: 0px 2px 48px 0px rgba(0, 0, 0, 0.08);
|
|
//left: 50%;
|
|
//transform: translateX(50%);
|
|
|
|
table {
|
|
margin: 10px 0 30px 0;
|
|
tbody {
|
|
tr {
|
|
td {
|
|
padding: 5px 0 5px 0;
|
|
border-bottom: 1px solid #E0E0E0;
|
|
font-size: 14px;
|
|
color: #4A4A4A;
|
|
font-weight: 500;
|
|
line-height: 1.5;
|
|
|
|
.delete-button-container{
|
|
position: relative;
|
|
width: 100%;
|
|
left: 65%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.button-container {
|
|
position: relative;
|
|
left: 90%;
|
|
top: 35px;
|
|
}
|
|
}
|