Close-Button Positionierung

This commit is contained in:
Alexander Müller 2024-12-14 11:37:18 +01:00
parent 9585cbc9aa
commit fa69ddd968
2 changed files with 9 additions and 5 deletions

View file

@ -19,9 +19,9 @@
<template id="popup-template">
<div class="recommendation-popup">
<div class="recommendation-popup-content">
<button class="close-popup">×</button>
<div class="recommendation-popup-header">
<h3></h3>
<button class="close-popup">×</button>
</div>
<div id="account-list" class="recommendation-popup-body"></div>
<div class="loading-spinner" id="loading-spinner"></div>

View file

@ -293,10 +293,11 @@ section {
}
.recommendation-popup-content {
position: relative;
background-color: var(--background-color);
border-radius: 15px;
padding: 20px;
width: 90%;
width: 98%;
max-width: 800px;
height: 80%;
overflow: hidden;
@ -317,11 +318,14 @@ section {
}
.close-popup {
background-color: transparent;
position: absolute;
top: 10px;
right: 10px;
background: transparent;
border: none;
color: #ffffff;
font-size: 1.5rem;
font-size: 20px;
cursor: pointer;
color: #ccc;
}
.recommendation-popup-body {