Template:CharacterTableControls/style.css: Difference between revisions

From Blue Archive Wiki
Jump to navigation Jump to search
Content added Content deleted
(Created page with ".charactertable-controls { background-color: #f8f9fa; border: 1px solid #a2a9b1; margin: auto; padding: 0.2em 0.4em; display: flex; flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; } .charactertable-controls div.controls > span { display: inline-block; height:30px; width:30px; background-color: palevioletred; }")
 
No edit summary
Line 12: Line 12:
gap: 8px 20px;
gap: 8px 20px;
}
}




.charactertable-controls div.controls > span {
.charactertable-controls div.controls > span {
display: inline-block;
display: inline-flex;
height:30px;
align-items: center;
width:30px;
justify-content: center;
height:32px;
background-color: palevioletred;
width:32px;
margin: 0 1px;
}
}

Revision as of 07:57, 24 January 2023

.charactertable-controls {
    background-color: #f8f9fa;
    border: 1px solid #a2a9b1;
    margin: auto;
    
    padding: 0.2em 0.4em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.charactertable-controls div.controls > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height:32px;
    width:32px;
    margin: 0 1px;
}