Change comment form styles (#2149)
Update form styles to remove white border and add colour distinction to the background
This commit is contained in:
parent
937bc63bbb
commit
1694048a1e
1 changed files with 3 additions and 1 deletions
|
|
@ -219,17 +219,19 @@ a.header-link {
|
|||
form {
|
||||
width: 104%;
|
||||
background: $light-gray;
|
||||
background: var(--theme-container-background, $light-gray);
|
||||
background: var(--theme-container-accent-background, $light-gray);
|
||||
overflow: auto;
|
||||
position: relative;
|
||||
margin-bottom: 4px;
|
||||
z-index: 4;
|
||||
margin-left: -2%;
|
||||
border-top: 1px solid $light-medium-gray;
|
||||
border-top: var(--theme-container-border, 1px solid $light-medium-gray);
|
||||
@media screen and (min-width: 820px) {
|
||||
width: calc(100% - 2px);
|
||||
margin-left: 0%;
|
||||
border: 1px solid $light-medium-gray;
|
||||
border: var(--theme-container-border, 1px solid $light-medium-gray);
|
||||
}
|
||||
|
||||
.field {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue