CoastalCommitsPastes/client/components/edit-document/document.module.css

49 lines
664 B
CSS
Raw Normal View History

2022-03-23 19:28:39 -04:00
.card {
max-width: var(--main-content);
margin: var(--gap) auto;
padding: 2;
border: 1px solid var(--light-gray);
}
2022-03-06 19:46:59 -05:00
.input {
2022-03-23 19:28:39 -04:00
background: #efefef;
2022-03-06 19:46:59 -05:00
}
.descriptionContainer {
2022-03-23 19:28:39 -04:00
display: flex;
flex-direction: column;
min-height: 400px;
overflow: auto;
2022-03-06 19:46:59 -05:00
}
.fileNameContainer {
2022-03-23 19:28:39 -04:00
display: flex;
justify-content: space-between;
align-items: center;
height: 36px;
2022-03-06 19:46:59 -05:00
}
.fileNameContainer {
2022-03-23 19:28:39 -04:00
display: flex;
align-content: center;
2022-03-06 19:46:59 -05:00
}
.fileNameContainer > div {
2022-03-23 19:28:39 -04:00
/* Override geist-ui styling */
margin: 0 !important;
2022-03-06 19:46:59 -05:00
}
.textarea {
2022-03-23 19:28:39 -04:00
height: 100%;
}
.actionWrapper {
2022-03-23 19:28:39 -04:00
position: relative;
z-index: 1;
}
.actionWrapper .actions {
2022-03-23 19:28:39 -04:00
position: absolute;
right: 0;
}