docbrown/app/views/admin/feedback_messages/_style.html.erb
Rajat Talesra d61d9fbc9d
Remove bootstrap from admin/feedback and use Crayons (#18892)
* Fix collapse glitch in profile-fields

* Feedback partial progress

* Feedback partial progress

* Removed form-control

* Replaced card with crayons-card
2023-01-04 10:25:27 +05:30

43 lines
714 B
Text

<style>
.notefield {
width: 100%;
resize: none;
font-size: 18px;
height: 50px;
border-radius: 3px;
padding: 5px;
margin: 10px 0px;
}
.email__container {
border: 1px solid gray;
margin: 10px;
padding-left: 50px;
padding-top: 5px;
}
.to__subject {
margin: 5px;
font-size: 20px;
color: black;
text-align: center;
}
.reported__message {
border: 1px solid;
margin: 20px auto;
padding: 20px;
max-height: 300px;
overflow: scroll;
}
.report__tags{
display: grid;
justify-items: end;
}
.notes__border{
border-style: solid;
border-width: 1px;
border-color: #17a2b8;
background-color: var(--base-0);
border-radius: 0.25rem;
}
</style>