mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
31 lines
768 B
Plaintext
Executable File
31 lines
768 B
Plaintext
Executable File
@import '~themes/vars.less';
|
|
.MicroHeader{
|
|
background-color: transparent !important;
|
|
padding: 0 5px 0 5px;
|
|
width: 100%;
|
|
height: auto;
|
|
position: absolute;
|
|
z-index: 1000;
|
|
top: 0;
|
|
text-align: center;
|
|
:global {
|
|
.ant-card-body {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
max-width: 10%;
|
|
margin: auto;
|
|
padding: 5px;
|
|
border-radius: 0 0 13px 13px;
|
|
transform: translate(0, -30px);
|
|
transition: all 150ms ease-in;
|
|
}
|
|
.ant-card-body:hover {
|
|
|
|
transform: translate(0, 0px);
|
|
transition: all 150ms ease-in;
|
|
}
|
|
.ant-btn {
|
|
background-color: transparent;
|
|
margin: 3px;
|
|
}
|
|
}
|
|
} |