Skip to content
This repository has been archived by the owner on Jan 1, 2025. It is now read-only.

Commit

Permalink
style: adjust article image
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsSim committed Apr 10, 2024
1 parent a11998b commit 292b0b2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions app/fsolauncher-ui/fsolauncher.css
Original file line number Diff line number Diff line change
Expand Up @@ -2015,7 +2015,7 @@ body.simitone {
.article-image {
position: relative;
}
.article-image:not(:last-child)::after {
.article-image::after {
height: 6px;
background:#4c8dee;
width: 30px;
Expand All @@ -2026,7 +2026,6 @@ body.simitone {
content: '';
position: absolute;
margin: 0 auto;
z-index: 20;
transform: translateX(-50%);
}

Expand Down
2 changes: 1 addition & 1 deletion app/fsolauncher-ui/styles/themes/halloween.css
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@
color: #ff691f !important;
}

.halloween .article-image:not(:last-child)::after,
.halloween .article-image::after,
.halloween button.halloween-transparent,
.halloween .button.halloween-transparent {
background: #ff691f;
Expand Down
2 changes: 1 addition & 1 deletion app/fsolauncher-ui/styles/themes/indigo.css
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@
color: rgba(255, 255, 255, 0.8);
}

.indigo .article-image:not(:last-child)::after {
.indigo .article-image::after {
background: #B388D7;
}

Expand Down
2 changes: 1 addition & 1 deletion app/fsolauncher-ui/styles/themes/simitone.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
}
.simitone .article-image:not(:last-child)::after {
.simitone .article-image::after {
background: linear-gradient(
45deg,
#2d6e96 0%,
Expand Down
2 changes: 1 addition & 1 deletion app/fsolauncher-ui/styles/themes/turbo.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
-webkit-text-fill-color: transparent;
}

.turbo .article-image:not(:last-child)::after,
.turbo .article-image::after,
.turbo h1.jumbotron {
background: linear-gradient(
150deg,
Expand Down
4 changes: 2 additions & 2 deletions app/fsolauncher/lib/installers/mono.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class MonoInstaller {
const command = 'apt-get update && apt-get install -y mono-complete';
sudo.exec( command, ( error, stdout, stderr ) => {
if ( error ) {
console.error( 'error trying to install mono-complete on linux', error );
console.error( 'error trying to install mono-complete on debian', error );
return reject( error );
}
console.info( stdout );
Expand All @@ -85,7 +85,7 @@ class MonoInstaller {
const command = 'pacman -Syu --noconfirm mono';
sudo.exec( command, ( error, stdout, stderr ) => {
if ( error ) {
console.error( 'Error trying to install mono on Arch Linux', error );
console.error( 'error trying to install mono on arch', error );
return reject( error );
}
console.info( stdout );
Expand Down
4 changes: 2 additions & 2 deletions app/fsolauncher/lib/installers/sdl.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class SDLInstaller {

sudo.exec( command, ( error, stdout, stderr ) => {
if ( error ) {
console.error( `exec error: ${error}` );
console.error( 'error trying to install sdl2 on debian', error );
return reject( error );
}
console.log( `stdout: ${stdout}` );
Expand All @@ -89,7 +89,7 @@ class SDLInstaller {

sudo.exec( command, ( error, stdout, stderr ) => {
if ( error ) {
console.error( `exec error: ${error}` );
console.error( 'error trying to install sdl2 on arch', error );
return reject( error );
}
console.log( `stdout: ${stdout}` );
Expand Down

0 comments on commit 292b0b2

Please sign in to comment.