feat: use margin to make card padding more flexible
This commit is contained in:
parent
72cb16d40a
commit
dc9f6aedb0
2 changed files with 15 additions and 5 deletions
|
@ -15,7 +15,16 @@ $card-smallpad: $lineheight_half;
|
|||
border: none;
|
||||
margin:0;
|
||||
margin-bottom:$lineheight;
|
||||
padding: $size;
|
||||
& > * {
|
||||
margin-left: $size;
|
||||
margin-right: $size;
|
||||
&:first-child {
|
||||
margin-top: $size;
|
||||
}
|
||||
&:last-child {
|
||||
margin-bottom: $size;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin card-header($size) {
|
||||
|
@ -27,13 +36,15 @@ $card-smallpad: $lineheight_half;
|
|||
padding-right:0;
|
||||
padding-bottom: $size/2!important;
|
||||
margin-bottom:$lineheight_half;
|
||||
margin-top:$lineheight_half;
|
||||
line-height:$lineheight;
|
||||
white-space: nowrap;
|
||||
@include border-radius();
|
||||
|
||||
position:relative;
|
||||
left: -$size*1.25;
|
||||
|
||||
width:95%;
|
||||
width:85%;
|
||||
|
||||
@include button-style($size);
|
||||
|
||||
|
@ -62,7 +73,6 @@ $card-smallpad: $lineheight_half;
|
|||
|
||||
&-body {
|
||||
padding:0!important;
|
||||
margin:0!important;
|
||||
}
|
||||
|
||||
&-header {
|
||||
|
|
|
@ -52,7 +52,6 @@
|
|||
<section class="sidebar">
|
||||
<div class="card card-info">
|
||||
<div class="card-header"><i class="fa fa-info"></i> Cémwha</div>
|
||||
<p class="mwarea"><img src="/img/avatar.png" alt="Une armée de cochon regarde de manière menaçante." class="mwaimg" /></p>
|
||||
<table style="width:100%" class="table-primary">
|
||||
<tr>
|
||||
<th>PSEUDO</th>
|
||||
|
@ -75,6 +74,7 @@
|
|||
<td>LibreOffice & Krita</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="card-header"><i class="fa fa-info"></i> Cétémwah</div>
|
||||
</div>
|
||||
|
||||
<!--=include includes/components/_sidebar.html -->
|
||||
|
|
Loading…
Reference in a new issue