1
0
Fork 0

Compare commits

..

No commits in common. "c1d3345a013981868788587ac395e4ef787a9252" and "645d8af22d5c144be6b3d4183b3da3648009715d" have entirely different histories.

3 changed files with 1 additions and 20 deletions

View file

@ -141,10 +141,6 @@ a {
box-shadow: 0 16px 40px rgba(23, 32, 51, 0.06);
}
.admin-card {
padding: 24px;
}
.admin-table {
width: 100%;
border-collapse: collapse;

View file

@ -50,7 +50,7 @@ final class GitSynchronizer
$this->runGit(['git', '-C', $repositoryDir, 'remote', 'set-url', 'origin', $mapping->getRepositoryUrl()], null, $env);
}
$this->runGit(['git', '-C', $repositoryDir, 'fetch', '--prune', '--tags', '--force', 'origin', $mapping->getGitRef()], null, $env);
$this->runGit(['git', '-C', $repositoryDir, 'fetch', '--prune', '--tags', 'origin', $mapping->getGitRef()], null, $env);
$this->runGit(['git', '-C', $repositoryDir, 'checkout', '--force', 'FETCH_HEAD'], null, $env);
return $repositoryDir;

View file

@ -1,15 +0,0 @@
<?php
namespace App\Tests;
use PHPUnit\Framework\TestCase;
final class AdminCssTest extends TestCase
{
public function testAdminCardDefinesInnerPadding(): void
{
$css = (string) file_get_contents(dirname(__DIR__).'/public/admin.css');
self::assertMatchesRegularExpression('/\.admin-card\s*\{[^}]*\bpadding:\s*24px;/s', $css);
}
}