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

Commit

Permalink
v1.0.10
Browse files Browse the repository at this point in the history
update
  • Loading branch information
CorellanStoma committed Jan 27, 2022
1 parent ee4c9a2 commit 0c3f33b
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 38 deletions.
5 changes: 4 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@
* Fixed Grid bug.

# v1.0.9
* Fixed Title bug.
* Fixed Title bug.

# v1.0.10
* Fixed new Title bug.
2 changes: 1 addition & 1 deletion dev.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝

:root {
--FA-version: "v1.0.9";
--FA-version: "v1.0.10";

--FG-row: 1fr 1fr 1fr;

Expand Down
2 changes: 1 addition & 1 deletion friends-grid.theme.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @name CreArts | Friends-Grid
* @version 1.0.9
* @version 1.0.10
* @author CorellanStoma#1996
* @authorLink https://crearts-community.github.io
* @description Friends-Grid adds a grid view to the friends list.
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CreArts | Friends-Grid",
"version": "1.0.9",
"version": "1.0.10",
"author": "CorellanStoma#1996",
"description": "Friends-Grid adds a grid view to the friends list.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion powercord_manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CreArts | Friends-Grid",
"version": "1.0.9",
"version": "1.0.10",
"author": "CorellanStoma#1996",
"description": "Friends-Grid adds a grid view to the friends list.",
"license": "MIT",
Expand Down
53 changes: 22 additions & 31 deletions src/base/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,29 @@
// ║ Friends-Grid ║ General ║
// ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝

// Header
// Title
.peopleColumn-1wMU14 .title-x4dI75 {
position: absolute;
top: 10px;
left: -10px;
position: relative;
top: -66px;
left: 0px;
font-weight: 700;
font-family: var(--font-display);
color: var(--header-primary);
font-size: 20px;
line-height: 24px;
text-transform: capitalize;
margin-left: 0px;
}

// Searchbar
.peopleColumn-1wMU14 .searchBar-2aylmZ {
position: relative;
background: var(--FG-search-background);
z-index: 9;
margin: 0px;
width: 100%;
border-radius: var(--FG-search-radius);
top: 24px;
}

// Grid
Expand All @@ -30,7 +42,7 @@

// Spacing
.peopleColumn-1wMU14 {
padding-top: 80px;
padding-top: 40px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
Expand All @@ -40,6 +52,9 @@
// ║ Base ║ Scrollbar ║
// ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝




// Disable Default Scrollbar
.peopleColumn-1wMU14 .scrollerBase-_bVAAt {
overflow: visible !important;
Expand All @@ -51,12 +66,14 @@
overflow: hidden scroll;
}


// Scrollbar
.peopleColumn-1wMU14::-webkit-scrollbar {
width: 16px;
height: 16px;
}


.peopleColumn-1wMU14::-webkit-scrollbar-corner {
background-color: transparent;
}
Expand Down Expand Up @@ -93,30 +110,4 @@
text-transform: none;
white-space: pre;
user-select: all;
}

// ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗
// ║ Base ║ Searchbar ║
// ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝

// (Big Friend List)
.peopleColumn-1wMU14 .content-2a4AW9 .searchBar-2aylmZ {
position: absolute;
background: var(--FG-search-background);
z-index: 9;
margin: 0px 0px 0px 0px;
width: 100%;
border-radius: var(--FG-search-radius);
top: -54px;
}

// (Big Small List)
.peopleColumn-1wMU14 .searchBar-2aylmZ {
position: relative;
background: var(--FG-search-background);
z-index: 9;
margin: 0px 0px 0px 0px;
width: 100%;
border-radius: var(--FG-search-radius);
top: -12px;
}
2 changes: 1 addition & 1 deletion src/source.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/* ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ */

:root {
--FA-version: "v1.0.9";
--FA-version: "v1.0.10";

--FG-row: 1fr 1fr 1fr;

Expand Down

0 comments on commit 0c3f33b

Please sign in to comment.