price -> prices (unfinished)

This commit is contained in:
2020-11-08 19:07:52 +01:00
parent dfa1a88163
commit dd9501e3cc
11 changed files with 364 additions and 82 deletions

View File

@@ -48,7 +48,7 @@
h5 {
font-size: 1rem;
font-weight: 300;
margin: 0 8px 0 auto;
margin: 0 0 0 auto;
}
p {
color: $gray;
@@ -71,9 +71,9 @@
}
.dish-row-column {
margin-top: 18px;
margin-bottom: 18px;
margin-top: 12px;
margin-bottom: 12px;
h5 {
margin-bottom: 8px;
margin-bottom: 4px;
}
}

View File

@@ -40,10 +40,12 @@ h4 {
.carddish-left {
display: flex;
h2 {
font-size: 1rem;
font-size: 1.1rem;
font-weight: 500;
margin: auto;
}
p {
font-size: 13px;
margin-left: auto;
color: $gray;
}

View File

@@ -24,6 +24,7 @@
padding: 2px;
margin: 4px;
h4 {
color: #c0c0c0;
margin: 8px 4px 8px 8px;
}
.pictogram {

View File

@@ -79,3 +79,13 @@
font-size: 0.9rem;
}
}
.card-description {
overflow: hidden;
line-height: 1.2em;
max-height: 3.5em;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; /* number of lines to show */
-webkit-box-orient: vertical;
}