Compare commits

...

3 Commits

Author SHA1 Message Date
2a3f2212a7 replaced span with div for the compass item
All checks were successful
default-pipeline default-pipeline #143
2021-04-29 12:12:17 +02:00
98df08e5fa Merge branch 'feature/return-to-starting-point-button' into feature/in-game-compass 2021-04-29 12:10:02 +02:00
8f0cfd4489 replaced spans with divs again and fixed the css issue
All checks were successful
default-pipeline default-pipeline #142
2021-04-29 12:08:04 +02:00
2 changed files with 9 additions and 9 deletions

View File

@ -164,7 +164,7 @@
opacity: 100%; opacity: 100%;
} }
#navigation span { #navigation .navigationItem div {
position: absolute; position: absolute;
} }

View File

@ -61,20 +61,20 @@
</div> </div>
<div id="navigation"> <div id="navigation">
<div class="navigationItem"> <div class="navigationItem">
<span> <div>
<img src="<?= $_ENV['STATIC_ROOT'] ?>/img/circle_background.svg?rev=<?= REVISION ?>" alt="Circle Background" class="circleBackground" /> <img src="<?= $_ENV['STATIC_ROOT'] ?>/img/circle_background.svg?rev=<?= REVISION ?>" alt="Circle Background" class="circleBackground" />
</span> </div>
<span> <div>
<img id="compass" src="<?= $_ENV['STATIC_ROOT'] ?>/img/compass.svg?rev=<?= REVISION ?>" alt="compass icon" class="navigationIcon" /> <img id="compass" src="<?= $_ENV['STATIC_ROOT'] ?>/img/compass.svg?rev=<?= REVISION ?>" alt="compass icon" class="navigationIcon" />
</span> </div>
</div> </div>
<div id="returnToStart" class="navigationItem"> <div id="returnToStart" class="navigationItem">
<span> <div>
<img src="<?= $_ENV['STATIC_ROOT'] ?>/img/circle_background.svg?rev=<?= REVISION ?>" alt="Circle Background" class="circleBackground" /> <img src="<?= $_ENV['STATIC_ROOT'] ?>/img/circle_background.svg?rev=<?= REVISION ?>" alt="Circle Background" class="circleBackground" />
</span> </div>
<span> <div>
<img src="<?= $_ENV['STATIC_ROOT'] ?>/img/house-fill.svg?rev=<?= REVISION ?>" alt="Return to Start icon" class="navigationIcon" /> <img src="<?= $_ENV['STATIC_ROOT'] ?>/img/house-fill.svg?rev=<?= REVISION ?>" alt="Return to Start icon" class="navigationIcon" />
</span> </div>
</div> </div>
</div> </div>
@endsection @endsection