docbrown/app/assets/stylesheets/feedback_messages.scss
Andy Zhao ecbb9d4ab1 [Done] New Reporting System MVP (#408)
* Move validations from controller to model

* Add new columns to feedback message model

* Use polymorphic notes relationship

* MVP of ticketing system

* Use new URL for reported_url param

* Add missing files

* Add validations and tests for feedback_messages

* Clean up some html

* Update create spec and add update spec

* Add mail tests and lint

* Add link to user profile
2018-06-19 16:41:31 -04:00

24 lines
456 B
SCSS

.dialog{
background: rgb(236, 236, 236);
border: 1px solid rgb(217, 217, 217);
text-align: center;
padding: 20px 30px;
margin: 20vh auto;
max-width: 60%;
height: 100%;
color: rgb(44, 46, 50);
border-radius: 5px;
@media screen and (max-width: 321px) {
h1,h2,h3,h4,h5,h6{
font-size: 15px;
}
}
@media screen and (max-width: 768px) {
h3{
word-break: break-all;
}
}
}
.blankmessage{
font-style: italic;
}