Commit b13acb33 authored by Callil Capuozzo's avatar Callil Capuozzo Committed by GitHub

style: explore table polish (#5261)

* Normalize explore styles

* slightly reduce row padding
parent 82c3193d
import { style } from '@vanilla-extract/css' import { style } from '@vanilla-extract/css'
import { body, caption } from 'nft/css/common.css' import { body, bodySmall } from 'nft/css/common.css'
import { sprinkles } from 'nft/css/sprinkles.css' import { sprinkles } from 'nft/css/sprinkles.css'
export const section = style([ export const section = style([
...@@ -74,13 +74,13 @@ export const table = style([ ...@@ -74,13 +74,13 @@ export const table = style([
export const thead = sprinkles({ export const thead = sprinkles({
marginRight: '12', marginRight: '12',
borderColor: 'outline', borderColor: 'backgroundInteractive',
borderWidth: '1px', borderWidth: '1px',
borderBottomStyle: 'solid', borderBottomStyle: 'solid',
}) })
export const th = style([ export const th = style([
caption, bodySmall,
{ {
selectors: { selectors: {
'&:nth-last-child(1)': { '&:nth-last-child(1)': {
...@@ -106,7 +106,7 @@ export const td = style([ ...@@ -106,7 +106,7 @@ export const td = style([
}, },
sprinkles({ sprinkles({
maxWidth: '160', maxWidth: '160',
paddingY: '8', paddingY: '4',
textAlign: 'right', textAlign: 'right',
position: 'relative', position: 'relative',
}), }),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment