mirror of
https://github.com/penpot/penpot.git
synced 2026-09-16 17:06:17 +00:00
* 🎉 Improve reset to default flow * 🎉 Add diff modal * 🐛 Fix measurement shortcuts * 🎉 Separate open-sections for each tab * 🐛 Align button link icon * 🎉 Reset only works after press save * 🐛 Fix little things * 🎉 Make the import export row to be fixed * ♻️ Fix CI * 🐛 Cancel shortcut is not appearing on disabled tab * 🐛 Fix tests * 🐛 Fix loop on personalized * 🐛 Fix show measurements shortcut
32 lines
752 B
SCSS
32 lines
752 B
SCSS
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
//
|
|
// Copyright (c) KALEIDOS INC Sucursal en España SL
|
|
|
|
@use "ds/_sizes.scss" as *;
|
|
@use "ds/_utils.scss" as *;
|
|
@use "ds/typography.scss" as *;
|
|
|
|
.button {
|
|
@include use-typography("body-small");
|
|
|
|
appearance: none;
|
|
align-items: center;
|
|
border: none;
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: center;
|
|
min-inline-size: px2rem(25);
|
|
padding-block: 0;
|
|
padding-inline: var(--sp-l);
|
|
transition: all 0.4s;
|
|
text-decoration: none !important;
|
|
block-size: $sz-40;
|
|
}
|
|
|
|
.logo {
|
|
block-size: px2rem(20);
|
|
inline-size: px2rem(20);
|
|
}
|