Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 4a610f78 authored by drishu's avatar drishu
Browse files

OEL-450: Move classes to link.

parent 760db5ad
No related branches found
No related tags found
1 merge request!3OEL-450: Theme the site branding block.
......@@ -20,8 +20,8 @@
</a>
{% endif %}
{% if site_name %}
<div class="site-name h1 text-white text-decoration-none align-bottom">
<a href="{{ path('<front>') }}" rel="home">{{ site_name }}</a>
<div class="site-name">
<a class="h1 text-white text-decoration-none align-bottom" href="{{ path('<front>') }}" rel="home">{{ site_name }}</a>
</div>
{% endif %}
{% if site_slogan %}
......
......@@ -61,8 +61,10 @@ class SiteBrandingBlockTest extends KernelTestBase {
$render = $this->container->get('renderer')->renderRoot($build);
$crawler = new Crawler($render->__toString());
$actual = $crawler->filter('.site-name.h1.text-white.text-decoration-none.align-bottom');
$actual = $crawler->filter('.site-name');
$this->assertCount(1, $actual);
$link = $actual->filter('.h1.text-white.text-decoration-none.align-bottom');
$this->assertCount(1, $link);
$actual = $crawler->filter('.site-logo');
$this->assertCount(1, $actual);
$logo = $actual->filter('img');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment