stacker.news/components/reply.module.css

46 lines
780 B
CSS
Raw Normal View History

2021-04-14 18:56:29 -05:00
.reply {
max-width: 600px;
2021-09-23 15:09:07 -05:00
padding-right: 15px;
2021-11-12 16:39:52 -06:00
padding-bottom: 1rem;
2021-09-23 15:09:07 -05:00
}
.replyButtons {
font-size: 70%;
color: var(--theme-grey);
2021-09-23 15:09:07 -05:00
font-weight: bold;
2023-01-26 10:11:55 -06:00
display: flex;
align-items: center;
2021-09-23 15:09:07 -05:00
cursor: pointer;
2021-11-13 07:28:08 -06:00
padding-bottom: .5rem;
2021-11-12 16:39:52 -06:00
line-height: 1rem;
vertical-align: middle;
2021-04-26 19:55:48 -05:00
}
.skeleton .input {
background-color: var(--theme-grey);
2021-04-26 19:55:48 -05:00
width: 100%;
border-radius: .4rem;
height: 115px;
margin-bottom: 1rem;
}
.skeleton .button {
background-color: var(--theme-grey);
2021-04-26 19:55:48 -05:00
border-radius: .4rem;
margin-top: .25rem;
width: 71px;
height: 38px;
2021-07-01 18:51:58 -05:00
}
.noTopLeftRadius textarea {
border-top-left-radius: 0;
}
.reply textarea {
margin-top: -1px;
}
.reply .text {
margin-top: -1px;
height: auto;
2021-04-14 18:56:29 -05:00
}