mirror of
https://github.com/coollabsio/coolify.git
synced 2026-09-25 07:50:35 -05:00
Standard buttons now capitalize each word in their labels. Movement and depth-shadow changes use an 80ms duration while color transitions stay at 120ms.
12 lines
358 B
PHP
12 lines
358 B
PHP
<?php
|
|
|
|
test('standard buttons capitalize each word in their labels', function () {
|
|
$utilities = file_get_contents(resource_path('css/utilities.css'));
|
|
|
|
preg_match('/@utility button \{(?<styles>[\s\S]*?)\n\}/', $utilities, $matches);
|
|
|
|
expect($matches['styles'] ?? '')
|
|
->toContain('capitalize')
|
|
->not->toContain('normal-case');
|
|
});
|