From 5ccc2dcbba3bfeca2d9edc39209d43d217eb2a80 Mon Sep 17 00:00:00 2001
From: Sohum <31165513+ssmendon@users.noreply.github.com>
Date: Tue, 03 Dec 2024 09:52:51 +0000
Subject: [PATCH] fix(head): update open-graph width and height protocol per ogp (#1512)
---
quartz/components/styles/search.scss | 25 +++++++++++++++----------
1 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/quartz/components/styles/search.scss b/quartz/components/styles/search.scss
index 2f07fe7..080178f 100644
--- a/quartz/components/styles/search.scss
+++ b/quartz/components/styles/search.scss
@@ -3,20 +3,25 @@
.search {
min-width: fit-content;
max-width: 14rem;
- flex-grow: 0.3;
+ @media all and ($mobile) {
+ flex-grow: 0.3;
+ }
- & > #search-icon {
+ & > .search-button {
background-color: var(--lightgray);
+ border: none;
border-radius: 4px;
+ font-family: inherit;
+ font-size: inherit;
height: 2rem;
+ padding: 0;
display: flex;
align-items: center;
+ text-align: inherit;
cursor: pointer;
white-space: nowrap;
-
- & > div {
- flex-grow: 1;
- }
+ width: 100%;
+ justify-content: space-between;
& > p {
display: inline;
@@ -59,7 +64,7 @@
margin-left: auto;
margin-right: auto;
- @media all and (max-width: $fullPageWidth) {
+ @media all and not ($desktop) {
width: 90%;
}
@@ -101,7 +106,7 @@
flex: 0 0 min(30%, 450px);
}
- @media all and (min-width: $tabletBreakpoint) {
+ @media all and not ($tablet) {
&[data-preview] {
& .result-card > p.preview {
display: none;
@@ -127,7 +132,7 @@
border-radius: 5px;
}
- @media all and (max-width: $tabletBreakpoint) {
+ @media all and ($tablet) {
& > #preview-container {
display: none !important;
}
@@ -160,7 +165,7 @@
width: min($pageWidth, 100%);
}
- & [data-icon] {
+ a[role="anchor"] {
background-color: transparent;
}
}
--
Gitblit v1.10.0