2024-07-26 10:42:15 +02:00
|
|
|
@import '../../styles/colors.scss';
|
2024-05-14 14:27:05 +05:00
|
|
|
|
2024-05-15 11:19:28 +05:00
|
|
|
.container {
|
|
|
|
color: $text-color;
|
2024-05-14 14:27:05 +05:00
|
|
|
|
2024-05-15 11:19:28 +05:00
|
|
|
.inputBlock {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 25px;
|
|
|
|
}
|
2024-05-14 14:27:05 +05:00
|
|
|
|
2024-05-22 11:19:40 +05:00
|
|
|
.subHeader {
|
|
|
|
border-bottom: 0.5px solid;
|
|
|
|
padding: 8px 16px;
|
|
|
|
font-size: 1.5rem;
|
2024-10-05 14:56:34 +02:00
|
|
|
z-index: 2;
|
2024-05-22 11:19:40 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
.filesWrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 10px;
|
|
|
|
margin-left: 15px;
|
|
|
|
|
|
|
|
.file {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-14 14:27:05 +05:00
|
|
|
.user {
|
2024-05-15 11:19:28 +05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
.name {
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tableCell {
|
|
|
|
border-right: 1px solid rgba(224, 224, 224, 1);
|
|
|
|
|
|
|
|
.user {
|
|
|
|
@extend .user;
|
|
|
|
}
|
2024-05-14 14:27:05 +05:00
|
|
|
}
|
2024-07-17 11:25:02 +03:00
|
|
|
|
|
|
|
.fixedBottomForm {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
2024-07-18 15:38:07 +03:00
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
width: 100%;
|
|
|
|
max-width: 500px;
|
2024-07-23 12:22:53 +03:00
|
|
|
height: 100px;
|
2024-07-17 11:25:02 +03:00
|
|
|
border-top: 1px solid #ccc;
|
|
|
|
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
|
|
|
|
padding: 10px 20px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2024-08-22 18:20:54 +02:00
|
|
|
.fixedBottomForm input[type='text'] {
|
2024-07-17 11:25:02 +03:00
|
|
|
width: 80%;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixedBottomForm button {
|
|
|
|
background-color: #3f3d56;
|
|
|
|
color: white;
|
|
|
|
border: none;
|
|
|
|
padding: 10px 20px;
|
|
|
|
font-size: 16px;
|
|
|
|
margin-left: 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2024-05-14 14:27:05 +05:00
|
|
|
}
|