Skip to content

Commit

Permalink
dash: remove shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsejet committed Mar 3, 2025
1 parent 94b2c3e commit cdc3bb4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/home/WorkspaceCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ function launch() {
.card-content,
.media-content {
overflow: hidden;
box-shadow: none;
}
.media img {
Expand Down
6 changes: 5 additions & 1 deletion src/views/DashboardView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="spacelist">
<template v-for="ws in workspaces" :key="ws.name">
<!-- Create workspace card -->
<div class="workspace card" v-if="ws.name === '__create__'">
<div class="create card" v-if="ws.name === '__create__'">
<div class="card-content">
<div class="block">
<div class="media-content">
Expand Down Expand Up @@ -113,6 +113,10 @@ async function openByName(name: string) {
}
}
.card.create {
box-shadow: none;
}
@media (max-width: 1023px) {
.outer .spacelist {
margin: 20px;
Expand Down

0 comments on commit cdc3bb4

Please sign in to comment.