mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-30 19:41:46 +08:00
Fix calc() in less files
This commit is contained in:
parent
bf9b47ce85
commit
c46e190a3a
2 changed files with 2 additions and 2 deletions
|
@ -240,7 +240,7 @@
|
|||
|
||||
.btn {
|
||||
&.buttonCompose {
|
||||
width: calc(~'100% - 85px');
|
||||
width: calc(100% - 85px);
|
||||
max-width: -moz-fit-content;
|
||||
max-width: -webkit-fit-content;
|
||||
max-width: fit-content;
|
||||
|
|
|
@ -40,6 +40,6 @@
|
|||
|
||||
@media screen and (max-width: 999px) {
|
||||
.b-languages-content .lang-item {
|
||||
width: calc(~'100% - 40px');
|
||||
width: calc(100% - 40px);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue