Skip to content

Commit

Permalink
feat: add default border color for app card (#12)
Browse files Browse the repository at this point in the history
为应用卡片组件添加默认的边框颜色,防止与背景融在一起。

before:

<img width="1300" alt="image" src="https://github.com/halo-dev/plugin-app-store/assets/21301288/faf91688-decb-4ba6-8c2e-2a4b0625dc8c">

after:

<img width="1294" alt="image" src="https://github.com/halo-dev/plugin-app-store/assets/21301288/5934a8a2-be3c-47f5-8ee4-12c40d161e91">

/kind improvement

```release-note
None
```
  • Loading branch information
ruibaby authored Sep 11, 2023
1 parent 0ca9ff8 commit 6507366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion console/src/components/AppCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const vendor = computed(() => {

<template>
<div
class="group as-relative as-flex as-grid-cols-1 as-flex-col as-overflow-hidden as-rounded as-bg-white as-p-0 as-shadow-sm as-transition-all as-duration-500 hover:as-shadow-md hover:as-ring-1 sm:as-grid sm:as-grid-cols-7 sm:as-p-2"
class="group as-relative as-flex as-grid-cols-1 as-flex-col as-overflow-hidden as-rounded as-bg-white as-p-0 as-shadow-sm as-ring-1 as-ring-gray-100 as-transition-all as-duration-500 hover:as-shadow-md hover:as-ring-inherit sm:as-grid sm:as-grid-cols-7 sm:as-p-2"
:class="[
{
'!as-grid-cols-1 !as-p-0': !block,
Expand Down

0 comments on commit 6507366

Please sign in to comment.