Skip to content

Commit

Permalink
fix popup styling (no rectangle around it anymore)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzadxz committed Nov 30, 2024
1 parent 41d6bbe commit f66c194
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,21 @@

body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
padding: 20px;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-color: #ffffff;
box-sizing: border-box;
}

.popup-container {
width: 100%;
max-width: 300px;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}

Expand All @@ -50,6 +49,7 @@
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
outline: none;
}

button:hover {
Expand Down

0 comments on commit f66c194

Please sign in to comment.