Skip to content

Commit

Permalink
Misc: linters
Browse files Browse the repository at this point in the history
  • Loading branch information
HFG43 committed Oct 20, 2023
1 parent 3de5db5 commit 9d9e214
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 22 deletions.
18 changes: 9 additions & 9 deletions app/assets/stylesheets/application.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lato:wght@100;300;400;700;900&display=swap');


* {
margin: 0;
padding: 0;
Expand All @@ -13,6 +12,10 @@ body {
background-color: rgb(249, 249, 249);
}

a {
text-decoration: none;
}

.logo {
display: flex;
flex-shrink: 1;
Expand All @@ -27,7 +30,6 @@ body {
display: flex;
flex-direction: column;
justify-content: space-between;

}

.sign_section a {
Expand Down Expand Up @@ -60,7 +62,7 @@ body {
color: #fff;
font-weight: 400;
display: flex;
justify-content: space-between;
justify-content: space-between;
}

.navbar_center {
Expand All @@ -87,11 +89,13 @@ body {
.reg_text_col {
color: rgb(132, 132, 132);
font-weight: 700;
text-decoration: none;
}

.reg_text_col_bold {
color: rgb(89, 98, 106);
font-weight: 900;
text-decoration: none;
}

.register {
Expand All @@ -109,7 +113,7 @@ body {
input {
border: none;
outline: none;
background-color:#fff
background-color: #fff;
}

.sign_up_button_container {
Expand Down Expand Up @@ -154,10 +158,6 @@ input {
display: flex;
}

a {
text-decoration: none;
}

.icon_container {
margin: 8px;
}
Expand All @@ -177,7 +177,7 @@ a {

.category_data_date {
padding: 9px;
font-size: 0.7rem;
font-size: 0.7rem;
}

.category_show_container {
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion app/controllers/groups_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class GroupsController < ApplicationController
before_action :authenticate_user!

def index
@path_description = "CATEGORIES"
@path_description = 'CATEGORIES'
@user = current_user
@groups = @user.groups
@group_amount = 0
Expand Down
12 changes: 0 additions & 12 deletions app/views/expenses/index.html.erb

This file was deleted.

0 comments on commit 9d9e214

Please sign in to comment.