More styling tweaks and bug fixes

This commit is contained in:
Pieter Vander Vennet 2022-02-01 19:02:46 +01:00
parent e6ac080019
commit aaaf0b8c36
10 changed files with 113 additions and 25 deletions

View file

@ -391,14 +391,7 @@
"fr": "Superficie : {_surface:ha} ha",
"de": "Grundfläche: {_surface:ha}ha"
},
"mappings": [
{
"if": "_surface:ha=0",
"then": {
"*": ""
}
}
],
"condition": "_surface:ha!=0",
"id": "Surface area"
},
"wikipedia"

View file

@ -139,6 +139,44 @@
},
"id": "Payment methods"
},
{
"id": "step_count",
"question": {
"en": "How much individual steps does one have to climb to reach the top of this tower?",
"nl": "Hoeveel treden moet men beklimmen op de top van de toren te bereiken?"
},
"freeform": {
"key": "step_count",
"type": "pnat"
},
"render": {
"en": "This tower has {step_count} steps to reach the top",
"nl": "Deze toren heeft {step_count} traptredes"
}
},
{
"id": "elevator",
"question": {
"en": "Does this tower have an elevator?",
"nl": "Heeft deze toren een lift?"
},
"mappings": [
{
"if": "elevator=yes",
"then": {
"en": "This tower has an elevator which takes visitors to the top",
"nl": "Deze toren heeft een lift die bezoekers naar de top van de toren brengt"
}
},
{
"if": "elevator=no",
"then": {
"en": "This tower does not have an elevator",
"nl": "Deze toren heeft geen lift"
}
}
]
},
"wheelchair-access",
"wikipedia"
],

View file

@ -59,4 +59,16 @@ h1, h2, h3, h4 {
.tab-non-active svg path {
fill: white !important;
stroke: white !important;
}
.md\:rounded-xl {
border-radius: unset !important;
}
.rounded-lg {
border-radius: unset !important;
}
.rounded-3xl {
border-radius: unset !important;
}