[BUGFIX] filter issues
This commit is contained in:
parent
609483f1df
commit
8c5fbfec63
4
frontend/scss/components/_important.scss
Normal file
4
frontend/scss/components/_important.scss
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
.rounded-t-none-important {
|
||||||
|
border-top-left-radius: 0px !important;
|
||||||
|
border-top-right-radius: 0px !important;
|
||||||
|
}
|
@ -40,7 +40,6 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
plugins: [],
|
plugins: [],
|
||||||
important: true,
|
|
||||||
darkMode: 'class',
|
darkMode: 'class',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -118,7 +118,7 @@
|
|||||||
{% if loggedin_user.is_admin %}
|
{% if loggedin_user.is_admin %}
|
||||||
<form action="/join/{{ planned_event.trip_details_id }}" method="get" />
|
<form action="/join/{{ planned_event.trip_details_id }}" method="get" />
|
||||||
{{ macros::input(label='Gast', class="input rounded-t", name='user_note', type='text', required=true) }}
|
{{ macros::input(label='Gast', class="input rounded-t", name='user_note', type='text', required=true) }}
|
||||||
<input value="Gast hinzufügen" class="btn btn-primary w-full !rounded-t-none" type="submit"/>
|
<input value="Gast hinzufügen" class="btn btn-primary w-full rounded-t-none-important" type="submit"/>
|
||||||
</form>
|
</form>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
@ -217,7 +217,7 @@
|
|||||||
{% if trip.cox_id == loggedin_user.id %}
|
{% if trip.cox_id == loggedin_user.id %}
|
||||||
<form action="/join/{{ trip.trip_details_id }}" method="get" />
|
<form action="/join/{{ trip.trip_details_id }}" method="get" />
|
||||||
{{ macros::input(label='Gast', class="input rounded-t", name='user_note', type='text', required=true) }}
|
{{ macros::input(label='Gast', class="input rounded-t", name='user_note', type='text', required=true) }}
|
||||||
<input value="Gast hinzufügen" class="btn btn-primary w-full !rounded-t-none" type="submit"/>
|
<input value="Gast hinzufügen" class="btn btn-primary w-full rounded-t-none-important" type="submit"/>
|
||||||
</form>
|
</form>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user