Pruning code by combining selectors

Both selectors were doing the same thing and were right next to each other, figured it may be cleaner to consolidate the code by combining the selectors.
This commit is contained in:
DragunovVelimirovic 2022-03-29 10:54:04 -03:00 committed by GitHub
parent 6ee2bef7b1
commit 0c62902d0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 7 deletions

View File

@ -143,13 +143,8 @@
gap: 50px;
}
.photo {
display: grid;
align-items: center;
}
.sidebar .side-content {
display: grid;
.side-content, .photo {
display: grid;
align-items: center;
}