FIX: add mobile specific stylesheet for onebox (#23329)

This commit is contained in:
Meghna 2023-08-31 06:05:28 +05:30 committed by GitHub
parent 97a812f022
commit 2cd2d7d4d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 4 deletions

View File

@ -453,7 +453,6 @@ pre.onebox code {
}
.github-icon-container {
position: absolute;
display: flex;
align-items: center;
margin-right: 10px;
@ -474,9 +473,6 @@ pre.onebox code {
.github-info-container {
width: 100%;
h4 {
margin: 0 0 10px 50px;
}
}
.github-info {

View File

@ -20,6 +20,7 @@
@import "menu-panel";
@import "modal";
@import "new-user";
@import "onebox";
@import "personal-message";
@import "push-notifications-mobile";
@import "reviewables";

View File

@ -0,0 +1,13 @@
// Onebox - Github - PR, Commit & Issue
.onebox.githubpullrequest,
.onebox.githubcommit,
.onebox.githubissue {
.github-icon-container {
position: absolute;
}
.github-info-container {
h4 {
margin: 0 0 10px 50px;
}
}
}