Merge pull request #2202 from iminoso/borders
Single border line seperating the main and sidebar sections
This commit is contained in:
commit
3bbd8ca898
1 changed files with 7 additions and 1 deletions
|
@ -13,6 +13,13 @@
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
@include box-shadow(0px 2px 2px rgba(0, 0, 0, 0.4));
|
@include box-shadow(0px 2px 2px rgba(0, 0, 0, 0.4));
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
display: table;
|
||||||
|
|
||||||
|
[class*="col-"] {
|
||||||
|
float: none;
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.rp-main {
|
.rp-main {
|
||||||
|
@ -22,6 +29,5 @@
|
||||||
|
|
||||||
.rp-sidebar {
|
.rp-sidebar {
|
||||||
padding: 30px 30px 0 30px;
|
padding: 30px 30px 0 30px;
|
||||||
border-left: 1px solid #DDD;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue