mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 01:54:40 +08:00
Fix styling of welcome button on win32
This commit is contained in:
parent
18640d1891
commit
4b79433fd5
1 changed files with 13 additions and 2 deletions
|
@ -467,7 +467,7 @@
|
|||
flex-direction: column;
|
||||
|
||||
.footer {
|
||||
background-image: linear-gradient(to right, #6061c7 0%, #4782ad 100%)
|
||||
background-image: linear-gradient(to right, #6061c7 0%, #4782ad 100%);
|
||||
}
|
||||
|
||||
a {
|
||||
|
@ -483,7 +483,7 @@
|
|||
.steps-container {
|
||||
position: relative;
|
||||
flex: 1;
|
||||
background-image: linear-gradient(to right, #696AE8 0%, #4c9ad2 100%);
|
||||
background-image: linear-gradient(to right, #696ae8 0%, #4c9ad2 100%);
|
||||
color: white;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
@ -533,6 +533,17 @@
|
|||
}
|
||||
|
||||
body.platform-win32 {
|
||||
.page.welcome,
|
||||
.page.tutorial {
|
||||
.footer {
|
||||
.btn-continue {
|
||||
color: white;
|
||||
&:hover {
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.page-frame {
|
||||
.alpha-fade-enter {
|
||||
transition: all 0.01s ease-out;
|
||||
|
|
Loading…
Reference in a new issue