chore(client): tweak style

This commit is contained in:
syuilo 2022-07-25 21:24:37 +09:00
parent b7f4cb6433
commit 519c8b419b
2 changed files with 11 additions and 27 deletions

View file

@ -19,33 +19,16 @@
</div> </div>
</template> </template>
<script lang="ts"> <script lang="ts" setup>
import { defineComponent } from 'vue'; import { } from 'vue';
export default defineComponent({ const props = defineProps<{
props: { to: string;
to: { active?: boolean;
type: String, external?: boolean;
required: true behavior?: null | 'window' | 'browser' | 'modalWindow';
}, inline?: boolean;
active: { }>();
type: Boolean,
required: false
},
external: {
type: Boolean,
required: false
},
behavior: {
type: String,
required: false,
},
inline: {
type: Boolean,
required: false
},
},
});
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@ -61,7 +44,7 @@ export default defineComponent({
align-items: center; align-items: center;
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
padding: 12px 14px 12px 14px; padding: 10px 14px;
background: var(--buttonBg); background: var(--buttonBg);
border-radius: 6px; border-radius: 6px;
font-size: 0.9em; font-size: 0.9em;

View file

@ -186,6 +186,7 @@ definePageMetadata({
text-align: left; text-align: left;
overflow: clip; overflow: clip;
padding: 0 100px; padding: 0 100px;
vertical-align: bottom;
input { input {
position: absolute; position: absolute;