Private
Public Access
1
0
Files
MineSeeker/assets/css/mineseeker/_base.scss
Lang 247f437445
All checks were successful
Deploy to Production / deploy (push) Successful in 14s
fix: pkg: the font-awesome simplifying to work on bare-metal - & fix all warnings at build time #4
2026-04-18 11:42:46 +02:00

57 lines
807 B
SCSS

html {
height: 100%;
padding: 0;
margin: 0;
}
body {
height: 100%;
min-height: 100%;
padding: 0;
margin: 0;
}
main {
width: 100%;
height: 100%;
}
.mine-container {
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.clear {
clear: both
}
#mine-wrapper,
#mine-wrapper * {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
#mine-wrapper {
display: table;
width: 842px;
margin: 0 auto;
}
#mine-wrapper .game-wrapper {
background: #000;
position: relative;
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}