Merge branch 'haste/clamp-font-size'
commit
11956da390
|
@ -20,7 +20,7 @@ h2.bot {
|
|||
background-color: #80cbc4;
|
||||
border: 1px solid black;
|
||||
padding: 20px;
|
||||
font-size: 30px;
|
||||
font-size: clamp(1rem, -0.8750rem + 8.3333vw, 2rem);
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
color: #073642
|
||||
|
|
|
@ -24,8 +24,7 @@ window.onload = function() {
|
|||
group: "dndmusicbot-playlists",
|
||||
filter: ".locked",
|
||||
onMove: (e) => {
|
||||
if (e.related)
|
||||
{
|
||||
if (e.related) {
|
||||
return !e.related.classList.contains('locked');
|
||||
}
|
||||
},
|
||||
|
@ -46,8 +45,7 @@ window.onload = function() {
|
|||
group: "dndmusicbot-ambiance",
|
||||
filter: ".locked",
|
||||
onMove: (e) => {
|
||||
if (e.related)
|
||||
{
|
||||
if (e.related) {
|
||||
return !e.related.classList.contains('locked');
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue