Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove unused css (moved into tab.vue)
Browse files Browse the repository at this point in the history
chengr4 committed Apr 2, 2024
1 parent ac3769c commit ab3065f
Showing 1 changed file with 0 additions and 53 deletions.
53 changes: 0 additions & 53 deletions site/frontend/src/pages/compare/tabs.vue
Original file line number Diff line number Diff line change
@@ -179,51 +179,6 @@ const activeTab: Ref<Tab> = ref(props.initialTab);
}
}
.tab {
display: flex;
flex-direction: column;
position: relative;
min-width: 200px;
min-height: 60px;
padding: 5px;
text-align: center;
border: 2px dotted #cccccc;
border-radius: 5px;
cursor: pointer;
&:hover {
@extend .selected;
}
@media (min-width: 600px) {
&:not(:first-child) {
margin-left: 30px;
}
&:not(:last-child) {
:after {
content: "";
position: absolute;
right: -17px;
border-right: 1px solid black;
top: 20%;
bottom: 20%;
}
}
}
}
.title {
font-weight: bold;
font-size: 1.1em;
margin-bottom: 5px;
}
.selected {
border-style: solid;
border-color: black;
}
.table-wrapper {
table {
width: 100%;
@@ -234,12 +189,4 @@ const activeTab: Ref<Tab> = ref(props.initialTab);
font-weight: normal;
}
}
.summary {
display: flex;
flex-direction: column;
justify-content: center;
font-size: 0.9em;
flex-grow: 1;
}
</style>

0 comments on commit ab3065f

Please sign in to comment.