Table actions button size
Created 5 years ago by marcus

Hi The table action buttons are default sized to 'sm' by the normalizer. How can I override the size value? BR Marcus

ryanthompson  —  5 years ago

You can simply define the size yourself using size. For registered buttons for example like "delete" you can do:

protected $actions = [
    'delete' => [
        'size' => 'lg',
    ],
];
marcus  —  5 years ago

Hi, I tried that but the size will not change. Changing the 'text' value and other properties works fine. //Marcus