mirror of
https://github.com/romancm/gamebrary
synced 2024-11-24 12:13:08 +00:00
Reduce border radius and make radius usage more consistent
This commit is contained in:
parent
ec0b4d3ab1
commit
7bc0e22a84
5 changed files with 7 additions and 2 deletions
|
@ -66,6 +66,8 @@ export default {
|
|||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: $gameCoverWidth auto;
|
||||
border-radius: $border-radius;
|
||||
overflow: hidden;
|
||||
|
||||
&.card-placeholder {
|
||||
background: $color-light-gray;
|
||||
|
|
|
@ -61,6 +61,7 @@ export default {
|
|||
background-color: $color-white;
|
||||
margin-top: $gp / 2;
|
||||
position: relative;
|
||||
border-radius: $border-radius;
|
||||
|
||||
&.card-placeholder {
|
||||
background: $color-light-gray;
|
||||
|
|
|
@ -69,6 +69,8 @@ export default {
|
|||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: 60px auto;
|
||||
border-radius: $border-radius;
|
||||
overflow: hidden;
|
||||
|
||||
img {
|
||||
width: 60px;
|
||||
|
|
|
@ -88,7 +88,7 @@ export default {
|
|||
margin-bottom: $gp;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: $border-radius / 2;
|
||||
border-radius: $border-radius;
|
||||
overflow: hidden;
|
||||
width: 200px;
|
||||
height: 100px;
|
||||
|
|
|
@ -26,7 +26,7 @@ $font-size-large: 18px;
|
|||
$font-size-xlarge: 24px;
|
||||
|
||||
// Measurements
|
||||
$border-radius: 4px;
|
||||
$border-radius: 2px;
|
||||
$gp: 16px;
|
||||
$navHeight: 48px;
|
||||
$container-width: 900px;
|
||||
|
|
Loading…
Reference in a new issue