mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Button container should be no wider than suggested topics
The button container sticks out farther than necessary because of the left margin, causing unnecessary horizontal scrolling at supported resolutions
This commit is contained in:
parent
79dfccf717
commit
b502a40b36
1 changed files with 3 additions and 3 deletions
|
@ -272,9 +272,9 @@
|
||||||
#topic-footer-buttons {
|
#topic-footer-buttons {
|
||||||
margin: 20px 0 0 103px;
|
margin: 20px 0 0 103px;
|
||||||
|
|
||||||
width: 1110px;
|
width: 1027px;
|
||||||
@include medium-width { width: 970px; }
|
@include medium-width { width: 887px; }
|
||||||
@include small-width { width: 870px; }
|
@include small-width { width: 787px; }
|
||||||
|
|
||||||
.btn-group {
|
.btn-group {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
|
Loading…
Reference in a new issue