Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# backpack Development Guidelines

Auto-generated from all feature plans. Last updated: 2026-01-27

## Active Technologies

- (001-bpk-input-v2)

## Project Structure

```text
src/
tests/
```

## Commands

# Add commands for

## Code Style

: Follow standard conventions

## Recent Changes

- 001-bpk-input-v2: Added

<!-- MANUAL ADDITIONS START -->
<!-- MANUAL ADDITIONS END -->
58 changes: 58 additions & 0 deletions examples/bpk-component-input-v2/examples.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/*
* Backpack - Skyscanner's Design System
*
* Copyright 2016 Skyscanner Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

@use '../../packages/bpk-mixins/tokens';
@use '../../packages/bpk-mixins/breakpoints';

.bpk-forms {
&__viewport-alert {
display: none;

@include breakpoints.bpk-breakpoint-tablet {
display: block;
}
}

&__form {
margin-bottom: tokens.bpk-spacing-md();

&--desktop-only {
@include breakpoints.bpk-breakpoint-tablet {
display: none;
}
}
}

&__place {
display: inline-block;
width: 32%;
vertical-align: bottom;
}

&__date {
display: inline-block;
width: 18%;
vertical-align: bottom;
}

&__hotels-destination {
display: inline-block;
width: 48%;
vertical-align: bottom;
}
}
Loading
Loading