Adding padding and overflow catch to domain in pop-up
This commit is contained in:
parent
fd1be7ceb8
commit
67c9a25747
|
@ -210,6 +210,8 @@ html {
|
||||||
h1 {
|
h1 {
|
||||||
font-size: var(--large-text);
|
font-size: var(--large-text);
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
|
@ -322,6 +324,10 @@ button:not(.delete):active > svg {
|
||||||
margin-top: var(--small-text);
|
margin-top: var(--small-text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#site-details {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
#state {
|
#state {
|
||||||
color: var(--color-l-red-20);
|
color: var(--color-l-red-20);
|
||||||
transition: .3s;
|
transition: .3s;
|
||||||
|
@ -336,6 +342,7 @@ button:not(.delete):active > svg {
|
||||||
border-radius: 3em;
|
border-radius: 3em;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
|
margin-left: 15px;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
background-color: var(--color-l-red-20);
|
background-color: var(--color-l-red-20);
|
||||||
color: var(--color-l-gray-10);
|
color: var(--color-l-gray-10);
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<body>
|
<body>
|
||||||
<main>
|
<main>
|
||||||
<div id="site-enabled">
|
<div id="site-enabled">
|
||||||
<div>
|
<div id="site-details">
|
||||||
<h1 id="domain">example.com</h1>
|
<h1 id="domain">example.com</h1>
|
||||||
<p>MetamorPOV replacements are <b id="state">disabled</b> for this website</p>
|
<p>MetamorPOV replacements are <b id="state">disabled</b> for this website</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue