mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
style(console): fix margin-top of the tab nav on the connectors page (#2550)
This commit is contained in:
parent
3350d11ffc
commit
cb152a2c07
2 changed files with 15 additions and 13 deletions
|
@ -1,18 +1,20 @@
|
|||
@use '@/scss/underscore' as _;
|
||||
|
||||
.tabs {
|
||||
.container {
|
||||
.tabs {
|
||||
margin-top: _.unit(4);
|
||||
}
|
||||
}
|
||||
|
||||
.connectorName {
|
||||
.connectorName {
|
||||
width: 360px;
|
||||
}
|
||||
}
|
||||
|
||||
.empty {
|
||||
.empty {
|
||||
text-align: center;
|
||||
font-size: var(--font-body-medium);
|
||||
}
|
||||
}
|
||||
|
||||
.emptyLine {
|
||||
.emptyLine {
|
||||
padding: _.unit(2) 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@ const Connectors = () => {
|
|||
|
||||
return (
|
||||
<>
|
||||
<div className={resourcesStyles.container}>
|
||||
<div className={classNames(resourcesStyles.container, styles.container)}>
|
||||
<div className={resourcesStyles.headline}>
|
||||
<CardTitle title="connectors.title" subtitle="connectors.subtitle" />
|
||||
{isSocial && (
|
||||
|
|
Loading…
Reference in a new issue