Skip to content

Commit

Permalink
style: 给几个组件加了阴影
Browse files Browse the repository at this point in the history
  • Loading branch information
camera-2018 committed Jan 27, 2023
1 parent 6d441e4 commit 1e6ab80
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions frontend/components/Aside/Gadgets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ defineProps({
</script>

<template>
<div display="block" class="bg-light-50 p-5">
<div display="block" class="bg-light-50 p-4 rounded-sm shadow-[0_2px_2px_0_rgba(0,0,0,0.05)]">
<nuxt-link class="" :href="gadgets.url">
<div class="flex flex-row items-center gap-4">
<div class="flex flex-row items-center gap-5">
<div class="items-end">
<nuxt-img
:src="gadgets.qrcode"
Expand Down
6 changes: 3 additions & 3 deletions frontend/components/Aside/LinkList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ defineProps({
</script>

<template>
<div display="block" class="">
<div class="bg-[#ffffff]">
<ul class=" flex-col gap-3 items-center flex">
<div display="block">
<div class="bg-[#ffffff] rounded-sm shadow-[0_2px_2px_0_rgba(0,0,0,0.05)]">
<ul class="flex flex-col gap-3 items-center px-2.5">
<li v-for="i in links" :key="i.url" class="h-[100%] w-[100%]">
<nuxt-link
:to="i.url"
Expand Down

0 comments on commit 1e6ab80

Please sign in to comment.