File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -134,6 +134,17 @@ const TemplateStates: StoryFn<CubeButtonProps> = ({
134134 >
135135 { label || 'Pressed' }
136136 </ Button >
137+ < Button
138+ { ...props }
139+ mods = { {
140+ hovered : true ,
141+ pressed : true ,
142+ focused : false ,
143+ disabled : false ,
144+ } }
145+ >
146+ { label || 'Pressed & Hovered' }
147+ </ Button >
137148 < Button
138149 { ...props }
139150 mods = { {
@@ -198,6 +209,17 @@ const DarkTemplateStates: StoryFn<CubeButtonProps> = ({
198209 >
199210 { label || 'Pressed' }
200211 </ Button >
212+ < Button
213+ { ...props }
214+ mods = { {
215+ hovered : true ,
216+ pressed : true ,
217+ focused : false ,
218+ disabled : false ,
219+ } }
220+ >
221+ { label || 'Pressed & Hovered' }
222+ </ Button >
201223 < Button
202224 { ...props }
203225 mods = { {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const AlertElement = tasty({
1313 styles : {
1414 display : 'block' ,
1515 flow : 'column' ,
16- radius : '1r ' ,
16+ radius : '@large-radius ' ,
1717 padding : '1.5x' ,
1818 preset : 't3' ,
1919 color : {
You can’t perform that action at this time.
0 commit comments