mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2024-12-22 03:29:23 +00:00
[Code quality] General fix
This commit is contained in:
parent
ecf80a5647
commit
06f3ad43d7
5 changed files with 10 additions and 12 deletions
|
@ -60,7 +60,7 @@ representative at an online or offline event.
|
|||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||
reported to the community leaders responsible for enforcement at
|
||||
maxime.gris@gmail.com.
|
||||
<everoddandeven@protonmail.com>.
|
||||
All complaints will be reviewed and investigated promptly and fairly.
|
||||
|
||||
All community leaders are obligated to respect the privacy and security of the
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Monerod-GUI
|
||||
# Monerod GUI
|
||||
|
||||
![Maintained][maintained-badge]
|
||||
[![Make a pull request][prs-badge]][prs]
|
||||
|
@ -13,7 +13,7 @@
|
|||
[![Watch on GitHub][github-watch-badge]][github-watch]
|
||||
[![Star on GitHub][github-star-badge]][github-star]
|
||||
|
||||
# Introduction
|
||||
## Introduction
|
||||
|
||||
**Monerod GUI** is a desktop application that provides a graphical user interface (GUI) for installing, updating, and interacting with the Monero daemon (`monerod`). This tool simplifies the process of managing a full Monero node, enabling users to run, configure, and monitor `monerod` without needing to use the command line.
|
||||
|
||||
|
|
|
@ -4,5 +4,5 @@
|
|||
}
|
||||
|
||||
.placeholder-glow .placeholder {
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
background-color: rgba(0, 0, 0, 10%);
|
||||
}
|
|
@ -13,10 +13,10 @@
|
|||
.b-example-divider {
|
||||
width: 100%;
|
||||
height: 3rem;
|
||||
background-color: rgba(0, 0, 0, .1);
|
||||
border: solid rgba(0, 0, 0, .15);
|
||||
background-color: rgba(0, 0, 0, 10%);
|
||||
border: solid rgba(0, 0, 0, 15%);
|
||||
border-width: 1px 0;
|
||||
box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
|
||||
box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, 15%);
|
||||
}
|
||||
|
||||
.b-example-vr {
|
||||
|
@ -50,8 +50,7 @@
|
|||
|
||||
.btn-bd-primary {
|
||||
--bd-violet-bg: #712cf9;
|
||||
--bd-violet-rgb: 112.520718, 44.062154, 249.437846;
|
||||
|
||||
--bd-violet-rgb: 112.5207, 44.062154, 249.437846;
|
||||
--bs-btn-font-weight: 600;
|
||||
--bs-btn-color: var(--bs-white);
|
||||
--bs-btn-bg: var(--bd-violet-bg);
|
||||
|
|
|
@ -20,7 +20,6 @@ $primary: #ff5733;
|
|||
|
||||
@media (min-width: 768px) {
|
||||
.sidebar .offcanvas-lg {
|
||||
position: -webkit-sticky;
|
||||
position: sticky;
|
||||
top: 48px;
|
||||
}
|
||||
|
@ -50,8 +49,8 @@ $primary: #ff5733;
|
|||
.navbar-brand {
|
||||
padding-top: .75rem;
|
||||
padding-bottom: .75rem;
|
||||
background-color: rgba(0, 0, 0, .25);
|
||||
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
|
||||
background-color: rgba(0, 0, 0, 25%);
|
||||
box-shadow: inset -1px 0 0 rgba(0, 0, 0, 25%);
|
||||
}
|
||||
|
||||
.navbar .form-control {
|
||||
|
|
Loading…
Reference in a new issue