Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Commit

Permalink
feat: create setup item card
Browse files Browse the repository at this point in the history
  • Loading branch information
Messias Junior committed Apr 29, 2021
1 parent 96a98d5 commit 1beae0d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
@@ -1,11 +1,11 @@
.spinner{
.spinner {
display: inline;
margin-top: auto;
margin-bottom: auto;
padding: .9rem;
padding: 0.9rem;
}

.item-name{
.item-name {
margin-top: auto;
margin-bottom: auto;
}
@@ -1,7 +1,7 @@
<nb-layout>
<nb-layout-column class="container">
<div>
<img src="favicon.ico" class="logo" alt="logo"/>
<img src="favicon.ico" class="logo" alt="logo" />
<h4 class="greetings">
{{ 'PAGES.INITIAL_SETUP.GREETINGS' | translate }}
</h4>
Expand Down
6 changes: 3 additions & 3 deletions src/app/ui/pages/initial-setup/initial-setup.component.scss
@@ -1,18 +1,18 @@
.logo{
.logo {
width: 5rem;
margin-right: auto;
margin-left: auto;
display: block;
}

.greetings{
.greetings {
margin-right: auto;
margin-left: auto;
display: block;
text-align: center;
}

.card{
.card {
width: 40rem;
margin-right: auto;
margin-left: auto;
Expand Down
32 changes: 16 additions & 16 deletions src/themes.scss
Expand Up @@ -5,20 +5,20 @@
@import '~@nebular/theme/styles/themes/corporate';

$nb-themes: nb-register-theme(
(
// add your variables here like:
// color-primary-100: #f2f6ff,
// color-primary-200: #d9e4ff,
// color-primary-300: #a6c1ff,
// color-primary-400: #598bff,
// color-primary-500: #3366ff,
// color-primary-600: #274bdb,
// color-primary-700: #1a34b8,
// color-primary-800: #102694,
// color-primary-900: #091c7a,
spinner-basic-background-color: #edf1f7,
spinner-primary-background-color: #fff
),
default,
default
(
// add your variables here like:
// color-primary-100: #f2f6ff,
// color-primary-200: #d9e4ff,
// color-primary-300: #a6c1ff,
// color-primary-400: #598bff,
// color-primary-500: #3366ff,
// color-primary-600: #274bdb,
// color-primary-700: #1a34b8,
// color-primary-800: #102694,
// color-primary-900: #091c7a,
spinner-basic-background-color: #edf1f7,
spinner-primary-background-color: #fff
),
default,
default
);

0 comments on commit 1beae0d

Please sign in to comment.