CoastalCommitsPastes/client/app/(posts)/post/[id]/components/post-page/view-document/document.module.css

50 lines
893 B
CSS
Raw Normal View History

2022-03-23 19:28:39 -04:00
.card {
margin: var(--gap) auto;
padding: var(--gap);
border: 1px solid var(--light-gray);
border-radius: var(--radius);
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 {
font-family: var(--font-mono) !important;
border-radius: var(--radius) !important;
margin-bottom: var(--gap-half) !important;
width: 100% !important;
2022-03-06 19:46:59 -05:00
}
.fileNameContainer span {
transition: background-color var(--transition) !important;
border-color: var(--light-gray) !important;
}
.fileNameContainer span:target,
.fileNameContainer span:hover {
background-color: var(--lighter-gray) !important;
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;
}
.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;
}
2022-03-24 21:03:57 -04:00
.textarea {
height: 100%;
}