Skip to content
Snippets Groups Projects
Commit f0f05d32 authored by Henrik Askjer's avatar Henrik Askjer
Browse files

tweak search menu button

parent 207a0e76
No related branches found
No related tags found
No related merge requests found
<template> <template>
<v-card rounded="xl"> <v-card rounded="xl">
<v-btn v-if="$vuetify.breakpoint.smAndDown"
class="search_options"
small
text
rounded
@click="expanded=!expanded">
<v-icon small left color="primary">filter_alt</v-icon>Søkealternativer<v-icon small right>{{expanded ? 'expand_less': 'expand_more'}}</v-icon></v-btn>
<v-container fluid v-if="expanded || $vuetify.breakpoint.mdAndUp"> <v-container fluid v-if="expanded || $vuetify.breakpoint.mdAndUp">
<v-row > <v-row >
<v-col :cols="$vuetify.breakpoint.smAndDown ? 12 : 3"> <v-col :cols="$vuetify.breakpoint.smAndDown ? 12 : 3">
...@@ -34,13 +42,6 @@ ...@@ -34,13 +42,6 @@
</v-row> </v-row>
</v-container> </v-container>
<v-btn v-if="$vuetify.breakpoint.smAndDown"
class="search_options"
text
@click="expanded=!expanded">
<v-icon>{{expanded ? 'expand_less': 'filter_alt'}}</v-icon>{{expanded? '' : 'Søkealternativer'}}</v-btn>
</v-card> </v-card>
</template> </template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment