mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-05 05:10:38 +08:00

Co-authored-by: codiumai-pr-agent-pro[bot] <151058649+codiumai-pr-agent-pro[bot]@users.noreply.github.com>
50 lines
1011 B
CSS
50 lines
1011 B
CSS
|
|
|
|
:root {
|
|
--md-primary-fg-color: #765bfa;
|
|
--md-accent-fg-color: #AEA1F1;
|
|
}
|
|
|
|
.md-nav--primary {
|
|
.md-nav__link {
|
|
font-size: 18px; /* Change the font size as per your preference */
|
|
}
|
|
}
|
|
|
|
.md-nav--primary {
|
|
position: relative; /* Ensure the element is positioned */
|
|
}
|
|
|
|
.md-nav--primary::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
right: 10px; /* Move the border 10 pixels to the right */
|
|
width: 2px;
|
|
height: 100%;
|
|
background-color: #f5f5f5; /* Match the border color */
|
|
}
|
|
/*.md-nav__title, .md-nav__link {*/
|
|
/* font-size: 18px;*/
|
|
/* margin-top: 14px; !* Adjust the space as needed *!*/
|
|
/* margin-bottom: 14px; !* Adjust the space as needed *!*/
|
|
/*}*/
|
|
|
|
.md-tabs__link {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.md-header__title {
|
|
font-size: 20px;
|
|
margin-left: 0px !important;
|
|
}
|
|
|
|
.md-content img {
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: black;
|
|
outline-width: 1px;
|
|
outline-style: solid;
|
|
outline-color: darkgray;
|
|
}
|