2026-08-13 20:56:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
2026-08-18 11:53:40 +00:00
|
|
|
it('uses the compact height for all standard buttons', function () {
|
2026-08-13 20:56:52 +00:00
|
|
|
$utilities = file_get_contents(resource_path('css/utilities.css'));
|
|
|
|
|
$applicationStyles = file_get_contents(resource_path('css/app.css'));
|
|
|
|
|
|
2026-08-18 11:53:40 +00:00
|
|
|
expect($utilities)->toContain('px-2.5 h-8 min-h-8')
|
2026-08-13 20:56:52 +00:00
|
|
|
->and($applicationStyles)
|
|
|
|
|
->not->toContain('.application-settings-workspace .button')
|
|
|
|
|
->not->toContain('.application-settings-form .button');
|
|
|
|
|
});
|