fix: styles on home page (#193)

This commit is contained in:
Tonya
2024-09-05 18:29:33 +00:00
committed by GitHub
parent c3628e36f7
commit 67c50068d9
2 changed files with 20 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
<template>
<BaseCard>
<BaseCard class="overflow-clip">
<table class="table w-full">
<thead>
<tr>
@@ -189,4 +189,20 @@
}
</script>
<style scoped></style>
<style scoped>
:where(.table *:first-child) :where(*:first-child) :where(th, td):first-child {
border-top-left-radius: 0px;
}
:where(.table *:first-child) :where(*:first-child) :where(th, td):last-child {
border-top-right-radius: 0px;
}
:where(.table *:last-child) :where(*:last-child) :where(th, td):first-child {
border-bottom-left-radius: 0px;
}
:where(.table *:last-child) :where(*:last-child) :where(th, td):last-child {
border-bottom-right-radius: 0px;
}
</style>