Skip to content

Commit

Permalink
fix: installation checks and ui fixes for home/application components (
Browse files Browse the repository at this point in the history
…#1330)

* v

* Update satolist.js

* fix: installation checks and ui fixes for home/application components

* fix(application): change css selector application -> applicationfx

* fix(devapplication): globalpreloader only install app, correct stop method

* Update index.css

---------

Co-authored-by: maxgithubprofile <[email protected]>
  • Loading branch information
DaniilKimlb and maxgithubprofile authored Dec 15, 2024
1 parent 87b7301 commit 2fcd320
Show file tree
Hide file tree
Showing 6 changed files with 221 additions and 124 deletions.
56 changes: 50 additions & 6 deletions components/application/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -179,16 +179,60 @@
transform: translateY(0px);
}
#applicationfx .installwrapper {
height: 80vh;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
flex-flow: column;
align-items: center;
text-align: center;
max-width: 600px;
height: 80vh;
margin: auto;
padding: 0;
}
#applicationfx .installwrapper .appicon {
width: 96px;
height: 96px;
margin-bottom: 48px;
background: rgba(var(--neutral-grad-1), 0.3);
border-radius: 16px;
margin-bottom: 24px;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
color: rgb(var(--color-txt-gray-dark));
}
#applicationfx .installwrapper .appdetails {
margin-bottom: 24px;
}
#applicationfx .installwrapper .appdetails .appname {
font-size: 1.8em;
font-weight: bold;
color: rgb(var(--text-color));
margin-bottom: 8px;
}
#applicationfx .installwrapper .appdetails .appdescription {
font-size: 1.2em;
color: rgb(var(--text-on-main-bg-color));
opacity: 0.8;
margin-bottom: 12px;
}
#applicationfx .installwrapper .appdetails .apptags {
display: flex;
gap: 0.5em;
flex-wrap: wrap;
justify-content: center;
}
#applicationfx .installwrapper .appdetails .apptags .tag {
display: inline-block;
padding: 0.3em 0.8em;
font-size: 0.8em;
color: rgb(var(--text-color));
background: rgb(var(--neutral-grad-1));
border: 1px solid rgb(var(--neutral-grad-0));
border-radius: 12px;
}
#applicationfx .installwrapper .installButton {
margin-top: 16px;
}
#applicationfx .installwrapper .installButton button {
min-width: 160px;
Expand Down Expand Up @@ -249,6 +293,6 @@
max-height: none;
}
.wnd.appwindow .wndback {
backdrop-filter: none!important;
-webkit-backdrop-filter: none!important;
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
}
Loading

0 comments on commit 2fcd320

Please sign in to comment.