mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-05 07:44:31 +00:00
feat/generator: change tag button style
This commit is contained in:
parent
1ec05d89e3
commit
165e68b9f4
2 changed files with 6 additions and 3 deletions
|
@ -679,6 +679,9 @@
|
|||
.px-3 {
|
||||
padding-inline: calc(var(--spacing) * 3);
|
||||
}
|
||||
.px-4 {
|
||||
padding-inline: calc(var(--spacing) * 4);
|
||||
}
|
||||
.px-8 {
|
||||
padding-inline: calc(var(--spacing) * 8);
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
export default function Tags({ tags }: { tags: string[] }) {
|
||||
return (
|
||||
<div className="container mx-auto">
|
||||
<div className="flex overflow-x-auto px-8 py-2 gap-2 scrollbar-thin scrollbar-corner-rounded-sm scrollbar-thumb-gray-700 scrollbar-track-gray-900">
|
||||
<div className="flex overflow-x-auto px-4 py-2 gap-2 scrollbar-thin scrollbar-corner-rounded-sm scrollbar-thumb-gray-700 scrollbar-track-gray-900">
|
||||
<button
|
||||
className="bg-gray-800 rounded-full px-3 py-1 text-sm"
|
||||
className="bg-gray-800 rounded-lg px-4 py-1 text-sm"
|
||||
key="all"
|
||||
data-type="tag"
|
||||
data-tag="all"
|
||||
|
@ -12,7 +12,7 @@ export default function Tags({ tags }: { tags: string[] }) {
|
|||
</button>
|
||||
{tags.map((tag) => (
|
||||
<button
|
||||
className="bg-gray-800 rounded-full px-3 py-1 text-sm hidden"
|
||||
className="bg-gray-800 rounded-lg px-4 py-1 text-sm hidden"
|
||||
key={tag}
|
||||
data-type="tag"
|
||||
data-tag={tag}
|
||||
|
|
Loading…
Add table
Reference in a new issue