We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, the abbr color inside cv is defined as color: var(--global-card-bg-color) !important; in _sass/_base.scss /_base.scss`
color: var(--global-card-bg-color) !important;
_sass/_base.scss
// CV .cv { margin-bottom: 40px; .card { background-color: var(--global-card-bg-color); border: 1px solid var(--global-divider-color); .list-group-item { background-color: inherit; border-color: var(--global-divider-color); .badge { color: var(--global-card-bg-color) !important; background-color: var(--global-theme-color) !important; } } } }
However, the similar style is not a variable inside bibliography. It seems like it is always white.
.abbr { margin-bottom: 0.5rem; abbr { display: inline-block; background-color: var(--global-theme-color); margin-bottom: 0.5rem; a { color: white; &:hover { text-decoration: none; } } } .award { color: var(--global-theme-color) !important; border: 1px solid var(--global-theme-color); } }
I need to add color: var(--global-card-bg-color) !important; after margin-bottom: 0.5rem; to obtain the similar style in cv.
margin-bottom: 0.5rem;
No response
The text was updated successfully, but these errors were encountered:
Can you create a PR for this?
Sorry, something went wrong.
I have created the PR #3017.
Successfully merging a pull request may close this issue.
Have you checked that your feature request isn't already filed?
Description & Motivation
Currently, the abbr color inside cv is defined as
color: var(--global-card-bg-color) !important;
in_sass/_base.scss
/_base.scss`
However, the similar style is not a variable inside bibliography. It seems like it is always white.
I need to add
color: var(--global-card-bg-color) !important;
aftermargin-bottom: 0.5rem;
to obtain the similar style in cv.Pitch
No response
Alternatives
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: