Skip to content

Commit

Permalink
Fix for #11 centerd Schedule view to left aligned
Browse files Browse the repository at this point in the history
  • Loading branch information
YukiGasai committed Sep 27, 2022
1 parent 8a916d8 commit 464351a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "google-calendar",
"name": "Google Calendar",
"version": "1.3.0",
"version": "1.3.1",
"minAppVersion": "0.12.0",
"description": "Interact with your Google Calendar from Inside Obsidian",
"author": "YukiGasai",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-calendar",
"version": "1.3.0",
"version": "1.3.1",
"description": "Interact with your Google Calendar from Inside Obsidian",
"main": "main.js",
"scripts": {
Expand Down
4 changes: 3 additions & 1 deletion src/svelte/ScheduleComp.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,15 @@
.scheduleContent {
display: flex;
flex-direction: column;
align-items: flex-start;
white-space: nowrap;
}
.dayContainer {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
border-bottom: 1px solid white;
margin: 2px 0px;
padding: 2px 0px;
Expand Down Expand Up @@ -237,7 +239,7 @@
text-align: center;
line-height: 30px;
font-size: 30px;
color: white;
color: rgb(164, 164, 164);
white-space: nowrap;
}
Expand Down

0 comments on commit 464351a

Please sign in to comment.