File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
packages/databases-collections-list/src Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import { usePreference } from 'compass-preferences-model/provider';
3131const cardTitleGroup = css ( {
3232 display : 'flex' ,
3333 alignItems : 'center' ,
34- gap : spacing [ 3 ] ,
34+ gap : spacing [ 400 ] ,
3535} ) ;
3636
3737const CardTitleGroup : React . FunctionComponent = ( { children } ) => {
@@ -48,10 +48,10 @@ const nonExistantDarkStyles = css({
4848
4949const inactiveCardStyles = css ( {
5050 borderStyle : 'dashed' ,
51- borderWidth : 2 ,
51+ borderWidth : spacing [ 50 ] ,
5252 '&:hover' : {
5353 borderStyle : 'dashed' ,
54- borderWidth : 2 ,
54+ borderWidth : spacing [ 50 ] ,
5555 } ,
5656} ) ;
5757
@@ -113,7 +113,7 @@ const cardActionContainer = css({
113113
114114const cardBadges = css ( {
115115 display : 'flex' ,
116- gap : spacing [ 2 ] ,
116+ gap : spacing [ 200 ] ,
117117 // Preserving space for when cards with and without badges are mixed in a
118118 // single row
119119 minHeight : 20 ,
@@ -124,7 +124,7 @@ const CardBadges: React.FunctionComponent = ({ children }) => {
124124} ;
125125
126126const cardBadge = css ( {
127- gap : spacing [ 1 ] ,
127+ gap : spacing [ 100 ] ,
128128} ) ;
129129
130130const cardBadgeLabel = css ( { } ) ;
@@ -171,7 +171,7 @@ const CardBadge: React.FunctionComponent<BadgeProp> = ({
171171} ;
172172
173173const card = css ( {
174- padding : spacing [ 3 ] ,
174+ padding : spacing [ 400 ] ,
175175} ) ;
176176
177177export type DataProp = {
@@ -196,8 +196,8 @@ export type NamespaceItemCardProps = {
196196
197197const namespaceDataGroup = css ( {
198198 display : 'flex' ,
199- gap : spacing [ 2 ] ,
200- marginTop : spacing [ 3 ] ,
199+ gap : spacing [ 200 ] ,
200+ marginTop : spacing [ 400 ] ,
201201} ) ;
202202
203203const column = css ( {
You can’t perform that action at this time.
0 commit comments