mirror of
https://codeberg.org/kirche-im-netz/Startodon-Hub.git
synced 2025-08-04 18:24:37 +02:00
Close-Button Positionierung
This commit is contained in:
parent
9585cbc9aa
commit
fa69ddd968
2 changed files with 9 additions and 5 deletions
|
@ -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>
|
||||
|
|
12
style.css
12
style.css
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue