-
Notifications
You must be signed in to change notification settings - Fork 12
Idea to show the dates on the albums #136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -77,7 +77,7 @@ | |
| padding: var(--spacing-md) var(--spacing-md); | ||
| display: flex; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| align-items: baseline; | ||
| gap: var(--spacing-sm); | ||
| transition: | ||
| transform 0.2s, | ||
|
|
@@ -154,12 +154,29 @@ | |
| margin-top: 4px; | ||
| } | ||
|
|
||
| .photo-date{ | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| gap: 6px; | ||
| color: var(--text-muted); | ||
| font-size: 14px; | ||
| line-height: 1.5; | ||
| margin-top: 4px; | ||
| } | ||
|
|
||
| .map-icon { | ||
| width: 18px; | ||
| height: 18px; | ||
| opacity: 0.6; | ||
| } | ||
|
|
||
| .calendar-icon { | ||
| width: 18px; | ||
| height: 18px; | ||
| opacity: 0.6; | ||
| } | ||
|
|
||
|
Comment on lines
168
to
+179
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is related to the specificity that I mentioned regarding the CSS classes. Adding another icon here should automatically grab the CSS to avoid repeating the CSS rules for all the icons. We should avoid the current pattern as much as possible.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We could have rules like: .photo-gallery img.icon {
}or something similar with the same idea. |
||
| /* Projects Section */ | ||
| .projects { | ||
| background: linear-gradient( | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't want everything to be aligned to the left, but only the bullets, not the title. I wasn't able to do that.