create-mellowtel-extension
Version:
Create a new Mellowtel browser extension with one command
41 lines (35 loc) • 551 B
CSS
.container {
width: 300px;
padding: 15px;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
gap: 10px;
}
button {
padding: 8px 16px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background-color: #0056b3;
}
.header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
}
.logo {
width: 48px;
height: 48px;
object-fit: contain;
}
h1 {
margin: 0;
font-size: 18px;
}